unda 0.2.2

General purpose machine learning crate for neural network development and analysis
Documentation
1
2
3
4
use crate::core::data::input::Input;

///Custom return type for generating a gradient in the (Bias, Weight) format
pub struct GradientPair(pub Box<dyn Input>,pub Box<dyn Input>);