report.h1(title);
report.para("This is an Encog training continuation object. It allows training to begin exactly where it left off. When a neural network, or other machine learning method, is trained certian data must be kept to track the training progress. Think of this as the notes you take in a class. Without this training data Encog will lose some ground when training is continued. This file will be used automatically if training can be continued. ");
report.para("However, the neural network does not need this data to function. Once training is done, this file can be deleted.");
report.para("Data designed for: " + ((TrainingContinuation)encogObject.getObject()).getTrainingType() );
report.endBody();
report.endHTML();
this.display(report.toString());
}
@Override