* @param inputNeuronsCount number of input neurons
* @param outputNeuronsCount number of output neurons
* @return instance of Kohonen network
*/
public static Kohonen createKohonen(int inputNeuronsCount, int outputNeuronsCount) {
Kohonen nnet = new Kohonen(new Integer(inputNeuronsCount), new Integer(outputNeuronsCount));
return nnet;
}