System.out.println("Neuron layer size counts vector = " + layersNeuronsCount);
NeuralNetwork neuralNetwork = new MultiLayerPerceptron(layersNeuronsCount, transferFunctionType);
neuralNetwork.setLabel(label);
PluginBase imageRecognitionPlugin = new ImageRecognitionPlugin(samplingResolution, colorMode);
neuralNetwork.addPlugin(imageRecognitionPlugin);
assignLabelsToOutputNeurons(neuralNetwork, imageLabels);
neuralNetwork.setLearningRule(new MomentumBackpropagation());