People who want to use the bindings in Linux (x386) may download file
here:
http://rapidshare.com/files/225789438/FANN-CdAB.13.mcz
It is basically the same package for PC (but includes cascade training
and other small additions).
I'm working in order to bring everything of the FANN library available
under squeak/linux.
To work properly, FANN library must be installed under linux
(/usr/lib/libfann...). In the squeak image, FFI must be installed.
Important to remember that somethings must be done explicitly. For
instance:
fInterface := FANNInterface new.
...
layerSizes := IntegerArray
with: layerSize1 asInteger
with: layerSize2 asInteger
...
with: layerSizez asInteger
layers := (layerSizes size) asInteger.
theFann := fInterface apiFammCreateStandardArray: layers with:
layerSIzes.