1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
This python binding is provided by Vincenzo Di Massa <hawk.it@tiscalinet.it>
and Gil Megidish <gil@megidish.net>
DESCRIPTION
===========
Using this wrapper it is possible to use libfann from python scripts.
USAGE
=====
Just
>> from pyfan import libfann
and then create libfann.neural_net and libfann.training_data objects
>> ann = libfann.neural_net()
>> train_data = libfann.training_data()
Look at the examples in examples/ and at the FANN documentation and its
C++ bindings for further reference.
TESTING
=======
To test the python bindings type
$ make test
to build the library and execute example scripts in the example directory.
BUILDING
========
see INSTALL
|