Simple Neural Network
A fully connected neural network with many options for customisation.
Basic training:
modelNN = learnNN(X, y);
Prediction:
p = predictNN(X_valid, modelNN);
One can use an arbitrary number of hidden layers, different activation functions (currently tanh or sigm), custom regularisation parameter, validation sets, etc. The code does not use any matlab toolboxes, therefore, it is perfect if you do not have the statistics and machine learning toolbox, or if you have an older version of matlab. I use the conjugate gradient algorithm for minimisation borrowed from Andrew Ngs machine learning course. See the github and comments in the code for more documentation.
Cite As
Vahe Tshitoyan (2023). Simple Neural Network (https://github.com/vtshitoyan/simpleNN), GitHub. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
lib
Versions that use the GitHub default branch cannot be downloaded
Version | Published | Release Notes | |
---|---|---|---|
1.1 | Automatically including the "lib" folder. |
|
|
1.0.0.1 | a fix to confusion matrix |
|
|
1.0.0.0 | Update the title and the picture
Changed the description
|
|