Components for building, training, and evaluating feed-forward neural networks entirely on-device with static memory allocation.
| Component | Description |
|---|---|
| Neural Network Overview | Architecture, training loop, and how the components fit together |
| Layers | Dense (fully connected) layer with forward and backward pass |
| Activation Functions | Non-linear element-wise transforms: ReLU, LeakyReLU, Sigmoid, Tanh, Softmax |
| Loss Functions | Objective functions: MSE, MAE, Binary Cross-Entropy, Categorical Cross-Entropy |
| Model | Variadic-template model composing layers, optimizer, and loss into a trainable pipeline |
See also: Optimization and Regularization primitives are provided by numerical-toolbox-cpp and consumed via FetchContent.