Skip to main content

Feed-forward neural network solution for python

Project description

Basic usage of the package is outlined below:

>>> 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.

Note: ffnet has now a graphical user interface ffnetui.

Release notes

0.8.3

License switched to LGPL. Only minor updates in code are performed, no API changes are made. Along with this version, new graphical user interface ffnetui-0.8.3 has been released.

0.8.0

This version supports python 3. Only minor changes in code (and no API changes) are made in comparison to previous release, all scripts should run without problems.

Project details


Download files

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

Source Distributions

ffnet-0.8.3.zip (63.5 kB view hashes)

Uploaded Source

ffnet-0.8.3.tar.gz (69.1 kB view hashes)

Uploaded Source

Built Distributions

ffnet-0.8.3.win-amd64-py3.4.exe (650.7 kB view hashes)

Uploaded Source

ffnet-0.8.3.win-amd64-py2.7.exe (645.1 kB view hashes)

Uploaded Source

ffnet-0.8.3.win32-py3.4.exe (535.4 kB view hashes)

Uploaded Source

ffnet-0.8.3.win32-py2.7.exe (540.2 kB view hashes)

Uploaded Source

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