ffnet 0.7.1
Feed-forward neural network solution for python
Downloads ↓ | Package Documentation
"ffnet" is a fast and easy-to-use feed-forward neural network training solution for python. Many nice features are implemented: arbitrary network connectivity, automatic data normalization, very efficient training tools, support for multicore systems, network export to fortran code...
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. ] )
Release Notes
This release contains mainly documentation improvements and changes in examples. Look also at the new sphinx-based website: http://ffnet.sourceforge.net.
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| ffnet-0.7.1.tar.gz (md5) | Source | 2012-01-07 | 57KB | 206 | |
| ffnet-0.7.1.win32-py2.7.exe (md5) | MS Windows installer | 2.7 | 2012-01-07 | 376KB | 163 |
| ffnet-0.7.1.zip (md5) | Source | 2012-01-07 | 60KB | 326 | |
- Author: Marek Wojciechowski
- Documentation: ffnet package documentation
- Home Page: http://ffnet.sourceforge.net
- Download URL: http://sourceforge.net/projects/ffnet/
- License: GPL
- Platform: Posix,Windows
- Requires numpy, scipy, networkx
-
Categories
- Development Status :: 4 - Beta
- Environment :: Console
- Intended Audience :: Education
- Intended Audience :: End Users/Desktop
- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU General Public License (GPL)
- Operating System :: OS Independent
- Programming Language :: Fortran
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Topic :: Scientific/Engineering :: Artificial Intelligence
- Package Index Owner: mwojc
- Package Index Maintainer: mwojc
- DOAP record: ffnet-0.7.1.xml
