skynet_ai/
lib.rs

1mod network;
2mod layer;
3mod activation;
4
5pub use network::*;
6pub use layer::*;
7pub use activation::*;