Skip to content

Multi Layer Perceptron implementation in C ( for Arduino or other MCUs)

Notifications You must be signed in to change notification settings

benjamin-henry/MLP_C

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Multi Layer Perceptron implementation in C ( for Arduino or other MCUs)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages