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