BackPropogationLearningAlgorithm bp = ((BackPropogationLearningAlgorithm)this.nn.getLearningRule());
bp.setLearningRate(this.learningRate);
bp.setStallDetectionParams(this.stallMinErrorDelta, this.stallMaxEpochs);
if (this.adagradLearningRateOn) {
bp.turnOnAdagradLearning(this.adagradLearningRateInitSetting);
bp.setup(); // we may need to find a better place for this
System.out.println("Turning on Adagrad Learning...");
}
// System.out.println("Debug-Stall > stallMinErrordelta: " + this.stallMinErrorDelta);