Skip to content

A neural network manually implemented in Python2.7 to classify handwritten numerical digits from MNIST data

Notifications You must be signed in to change notification settings

vaer-k/neural-net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

neural-net

A neural network implemented in Python to classify handwritten numerical digits from MNIST data

To run the network, first clone this repo and ensure that numpy and pandas are installed on your machine. Then simply start an iPython session, import the nn module, and call fit() on an instantiated network:

import nn
clf = nn.NeuralNetwork()
clf.fit()

This will automatically use the MNIST dataset and report the results of evaluation on a test using default parameters.

About

A neural network manually implemented in Python2.7 to classify handwritten numerical digits from MNIST data

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages