neural_network_study/
lib.rs

1mod matrix;
2mod nn;
3
4pub use matrix::Matrix;
5pub use nn::{ActivationFunction, NeuralNetwork};