Skip to content

A super simple artificial neural network in python.

Notifications You must be signed in to change notification settings

cookbenjamin/NeuralNet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

neuralNet

A super simple artificial neural network written from the ground up in python.

Requirements

The code was written to be interpreted as Python 3.

This neural network depends upon both NumPy and SciPy. Both belong to the SciPy stack. You can install them by following the SciPy stack installation instructions.

Usage

Import:
>>> from neuralNet import NeuralNet

>>> nn = NeuralNet()

>>> x = [[3, 5]]
>>> y = [[.75]]

Train:
>>> nn.train(x, y)

Predict:
>>> nn.predict(x)
[[.750000000]]

About

A super simple artificial neural network in python.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages