I am new to working with java. I wanted to know the requisites and the procedure to use the FANN-1.1 tool library in java to train a set of data.
The code given in https://code.google.com/p/fannj/ is
Fann fann = new Fann( "/path/to/file" );
float[] inputs = new float[]{ -1, 1 };
float[] outputs = fann.run( inputs );
fann.close();
here what is /path/to/file