1 2 3 4 5 6 7 8 9 10 11
/*! * Neural network training facilities. * * Provides an interface for training strategies and rules, * as well as a simple implementation, */ pub mod interface; pub mod jitterstrat; pub mod label; pub mod prelude; pub mod trainer;