neurs 0.1.1

A simple, feed-forward-only, but efficient, neural network and reinforcement learning library
Documentation
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;