rotta_rs 0.1.0

a Deep Learning library with rust language
Documentation
mod tensor;
pub use tensor::*;

mod rotta_type;
pub use rotta_type::*;

mod module;
pub use module::*;

mod loss;
pub use loss::*;

mod optimizer;
pub use optimizer::*;

mod activation;
pub use activation::*;

mod data_handler;
pub use data_handler::*;

mod _unsafe;

pub mod arrayy;
pub use arrayy::{ ArrSlice, r };