tensorrs 0.3.2

Tensors is a lightweight machine learning library in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Building Blocks for Neural Networks
//!
//! 1.[Linear] - Linear layer for neural network
//!
//! 2.[Sequential] - Sequential model for building neural networks by stacking layers

mod linear;
mod sequential;
mod rnn;
mod linear_builder;
mod neural_network_builder;

pub use linear::*;
pub use sequential::*;
pub use linear_builder::*;
pub use rnn::*;