rotta_rs 0.1.0

a Deep Learning library with rust language
Documentation
1
2
3
4
5
pub trait ParDataHandler {
    type Input;
    type Output;
    fn forward(&self, data: &Self::Input) -> Self::Output;
}