vexus 4.0.0

A neural network builder and trainer struct to make your own AI models.
Documentation
1
2
3
4
5
6
7
8
//! A simple neural network implementation in Rust.

mod neural_network;

// Re-export the NeuralNetwork struct to make it available at the crate root
pub use neural_network::Activation;
pub use neural_network::NeuralNetwork;
pub use neural_network::Sigmoid;