This commit is contained in:
2016-05-21 00:08:29 +02:00
parent 511926a4f5
commit 4af18f014c

View File

@@ -54,7 +54,7 @@ namespace NeuralNetwork {
std::cout << error << "\n";
if(_pruningStatus && error*_pruningLimit >= lastError) { // it is not getting bettter
if(_pruningStatus && error >= lastError * _pruningLimit) { // it is not getting bettter
network.removeLastHiddenNeuron();
error=lastError;
std::cout << "PRUNED\n";