File: README

package info (click to toggle)
libfann 2.1.0~beta%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 14,648 kB
  • ctags: 924
  • sloc: sh: 8,753; ansic: 5,994; cpp: 2,351; makefile: 507; perl: 243; python: 131; sed: 7
file content (31 lines) | stat: -rw-r--r-- 686 bytes parent folder | download | duplicates (3)
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