//! Neural network primitives: layers, loss functions, optimizers, the sequential
//! model, and the traits that tie them together
use ArrayD;
/// N-dimensional array used as a tensor in the neural network
pub type Tensor = ;
/// Neural network layer implementations
/// Loss function implementations
/// Optimization algorithms for neural network training
/// Sequential model architecture
/// Trait interfaces for neural network models