Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 367 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 367 Bytes

MLP_C

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.