[squeak-dev] FANN Bindings for Linux preliminary working version available for download

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

[squeak-dev] FANN Bindings for Linux preliminary working version available for download

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




signature.asc (268 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: [squeak-dev] FANN Bindings for Linux preliminary working version available for download

Mariano Martinez Peck
Wouldn't be better to uploaded it to squeaksource? People can then commit changes, there is a wiki, there is forever (in rapidshare files are deleted sometimes).

Congratulations for your job!!!

Greetings,

Mariano

On Sat, Apr 25, 2009 at 11:53 PM, Casimiro de Almeida Barreto <[hidden email]> wrote:
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.