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