Multi Layer Perceptron implementation in C ( for Arduino or other MCUs )
Tested on ESP32
Available Activations
enum Activation {
Sigmoid=0,
Tanh,
Relu,
Softmax,
Linear
};
Available Losses
enum Loss {
Categorical_Crossentropy = 0,
Binary_Crossentropy,
MSE,
};
To see examples, please go to the examples folder.