rotta_rs 0.0.6

a Deep Learning library with rust language
Documentation
1
2
3
4
5
6
7
8
use rotta_rs::Tensor;

fn main() {
    // println!("ROTTA-rs version 0.0.6")

    let tensor = Tensor::new([[0.1, 0.2, 0.3]]);
    println!("{}", tensor);
}