You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An implemention of MLP (Multi Layer Perceptron) Classifier from scratch in numpy.
Description
hidden layers activation is sigmoid
output layer activation is softmax
loss function is cross-entropy
support save and load model weights
setting hidden layers by paramater "hidden_sizes", examples: hidden_sizes=(100,),there is a hidden layer of 100 neurons;
hidden_sizes=(100,50),there are two hidden layers, 100 and 200 neurons.