protected virtual void OnExecutedIteration(
int iteration,
DoubleMatrix sample,
LinkedList<double> levels,
LinkedList<DoubleMatrix> parameters
)
Protected Overridable Sub OnExecutedIteration (
iteration As Integer,
sample As DoubleMatrix,
levels As LinkedList(Of Double),
parameters As LinkedList(Of DoubleMatrix)
)
protected:
virtual void OnExecutedIteration(
int iteration,
DoubleMatrix^ sample,
LinkedList<double>^ levels,
LinkedList<DoubleMatrix^>^ parameters
)
abstract OnExecutedIteration :
iteration : int *
sample : DoubleMatrix *
levels : LinkedList<float> *
parameters : LinkedList<DoubleMatrix> -> unit
override OnExecutedIteration :
iteration : int *
sample : DoubleMatrix *
levels : LinkedList<float> *
parameters : LinkedList<DoubleMatrix> -> unit
Virtual method OnExecutedIteration is is not a mandatory step of a Cross-Entropy program. It is executed after completion of the updating step, and by default does nothing. Users can override it to add functionality to each Cross-Entropy iteration.