Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 386 Bytes

README.md

File metadata and controls

14 lines (13 loc) · 386 Bytes

numpynet

A simple and light-weight FC neural network implementation written in pure Numpy. Supports Adam, SGD, Momentum and NAG optimizers.

Usage

from Neural_Network import Network
net=Network(in_features,out_features,hidden_layers,activation)
net.train(X,y,learning_rate,batch_size)

example:

net=Network(500,2,[100,10],'relu')
net.train(X,y,0.001,16)