mininn 0.1.4

A minimalist deep learnig crate for rust.
Documentation
1
2
3
4
5
6
7
8
//! This module contains the register for activations, costs and layers.

mod global_register;
mod register;

pub(crate) use global_register::REGISTER;

pub use register::Register;