mininn 0.1.4

A minimalist deep learnig crate for rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Core module of the library.
//!
//! This module contains the core components of the library, including the `NN` struct and its associated methods.
//!
//! The `NN` struct represents a neural network, which is a container of layers that can be trained and used for
//! various tasks, such as classification, regression, and pattern recognition.
//!
mod error;
mod nn;
mod train_config;

pub use error::*;
pub use nn::*;
pub use train_config::TrainConfig;