* @param transferFunctionType neuron's transfer function type
* @return instance of Hebbian network
*/
public static SupervisedHebbianNetwork createSupervisedHebbian(int inputNeuronsCount,
int outputNeuronsCount, TransferFunctionType transferFunctionType) {
SupervisedHebbianNetwork nnet = new SupervisedHebbianNetwork(inputNeuronsCount,
outputNeuronsCount, transferFunctionType);
return nnet;
}