prophet
prophet copied to clipboard
A simple neural net implementation.
Right now the project looks dead on Github since there wasn't any activity on master for ~1 year, for most code parts even ~2 years. That makes it hard to...
Write remaining unittests for the new (and old) components of this library. Missing unittests are: - `utils.rs`: - [x] `LearnRate` - [x] `LearnMomentum` - `nn.rs`: - [ ] `NeuralNet` -...
Implement parallel execution based on rayon via ndarray provided wrappers. This is the initial step towards full parallel execution.
Currently Prophet handles too many (potential) errors with panics instead of proper Rust-style error handling via `Result` return type and proper error kinds etc. This also leads to less testable...