Skip to content
forked from uptake/numpynet

Approachable neural net implementation in pure numpy

License

Notifications You must be signed in to change notification settings

smasis001/numpynet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NumpyNet

What is NumpyNet?


NumpyNet is a very simple python framework for neural networks. It meant to be a teaching tool so that people can really get under the hood and learn the basics about how neural network are built and how they work.
It includes nice visualizations of the process so that the user can watch what is going on as the models learn and make predictions. It's only dependencies are numpy, which does the math, and visdom, which does the visualizations.

State of the Repo


Currently this project is in it's infancy. The basic functionality is there but there's still a lot to do. So get in there and add some issues you'd like to see or better yet contribute some code!

Quick Start


Grab NumpyNet:

git clone https://github.com/UptakeOpenSource/numpynet.git
cd numpynet

Install NumpyNet (will install visdom as well):

python setup.py install

Start visdom server locally:

visdom

Open up http://localhost:8097 in a browser

Run a demo and have some fun:

python examples.py

Testing the code

We have not set up integration on Travis CI yet (but it's coming soon!). For now, to test that this project is building, just do the following:

./integration.sh

About

Approachable neural net implementation in pure numpy

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.7%
  • Shell 0.3%