rust_nn 0.1.0

An educational Neural Network framework in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
/// Error type for RustNN
#[derive(Debug, PartialEq)]
pub enum Error {
    /// Indicates some dimension is incorrect in a Matrix operation.
    DimensionErr,
    /// Indicates an error that occured due to library's multithreading
    ThreadErr,
}

pub type Result<T> = std::result::Result<T, Error>;