Skip to main content

Feed-forward neural network solution for python

Project description

Basic usage of the package:

>>> from ffnet import ffnet, mlgraph, savenet, loadnet, exportnet
>>> conec = mlgraph( (2,2,1) )
>>> net = ffnet(conec)
>>> input = [ [0.,0.], [0.,1.], [1.,0.], [1.,1.] ]
>>> target  = [ [1.], [0.], [0.], [1.] ]
>>> net.train_tnc(input, target, maxfun = 1000)
>>> net.test(input, target, iprint = 2)
>>> savenet(net, "xor.net")
>>> exportnet(net, "xor.f")
>>> net = loadnet("xor.net")
>>> answer = net( [ 0., 0. ] )
>>> partial_derivatives = net.derivative( [ 0., 0. ] )

For instalation instructions and documentation go to http://ffnet.sourceforge.net.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ffnet-0.8.4.tar.gz (55.8 kB view hashes)

Uploaded source

Built Distributions

ffnet-0.8.4-py3.7-linux-x86_64.egg (355.0 kB view hashes)

Uploaded 3 7

ffnet-0.8.4-py3.6-linux-x86_64.egg (360.7 kB view hashes)

Uploaded 3 6

ffnet-0.8.4-py3.5-linux-x86_64.egg (359.9 kB view hashes)

Uploaded 3 5

ffnet-0.8.4-py2.7-win-amd64.egg (311.1 kB view hashes)

Uploaded 2 7

ffnet-0.8.4-py2.7-linux-x86_64.egg (348.6 kB view hashes)

Uploaded 2 7

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page