nove_model 0.1.2

An easy-to-use, lightweight deep learning library wrapped around Candle Tensor.
Documentation
mod linear;
pub use linear::Linear;
pub use linear::LinearBuilder;

mod dropout;
pub use dropout::Dropout;

mod relu;
pub use relu::ReLU;

mod conv;
pub use conv::Conv2d;
pub use conv::Conv2dBuilder;

mod pool;
pub use pool::MaxPool2d;
pub use pool::MaxPool2dBuilder;

mod cnn;
pub use cnn::CNN;
pub use cnn::CNNBuilder;
pub use cnn::CNNConvBlock;
pub use cnn::CNNLayer;
pub use cnn::CNNLinearBlock;