Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 1.33 KB

File metadata and controls

15 lines (11 loc) · 1.33 KB

Neural Network

Components for building, training, and evaluating feed-forward neural networks entirely on-device with static memory allocation.

Components

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.