Class PerformanceListener
- java.lang.Object
-
- org.deeplearning4j.optimize.api.BaseTrainingListener
-
- org.deeplearning4j.optimize.listeners.PerformanceListener
-
- All Implemented Interfaces:
Serializable,TrainingListener
public class PerformanceListener extends BaseTrainingListener implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPerformanceListener.Builder
-
Constructor Summary
Constructors Constructor Description PerformanceListener(int frequency)PerformanceListener(int frequency, boolean reportScore)PerformanceListener(int frequency, boolean reportScore, boolean reportGC)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiditerationDone(Model model, int iteration, int epoch)Event listener for each iteration.-
Methods inherited from class org.deeplearning4j.optimize.api.BaseTrainingListener
onBackwardPass, onEpochEnd, onEpochStart, onForwardPass, onForwardPass, onGradientCalculation
-
-
-
-
Method Detail
-
iterationDone
public void iterationDone(Model model, int iteration, int epoch)
Description copied from interface:TrainingListenerEvent listener for each iteration. Called once, after each parameter update has ocurred while training the network- Specified by:
iterationDonein interfaceTrainingListener- Overrides:
iterationDonein classBaseTrainingListener- Parameters:
model- the model iteratingiteration- the iteration
-
-