Skip to content

vaibhavnayel/numpynet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

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)

About

A neural network library written in pure Numpy.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages