Caution
When overriding this method, please remember to call
its base implementation, or no smoothing scheme will be
applied to Cross-Entropy parameters.
protected override void OnExecutedIteration(
int iteration,
DoubleMatrix sample,
LinkedList<double> levels,
LinkedList<DoubleMatrix> parameters
)
Protected Overrides 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
) override
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
In the SystemPerformanceOptimizationContext class, this method calls SmoothParameter(LinkedListDoubleMatrix) to provide a smoothing scheme for Cross-Entropy parameters.
In the following example, a new context class is derived from SystemPerformanceOptimizationContext that needs to override method OnExecutedIteration(Int32, DoubleMatrix, LinkedListDouble, LinkedListDoubleMatrix).
class DerivedContext : SystemPerformanceOptimizationContext
{
public override void OnExecutedIteration(
int iteration,
DoubleMatrix sample,
LinkedList<double> levels,
LinkedList<DoubleMatrix> parameters)
{
Console.WriteLine("Iteration: {0}", iteration);
// Calling the base class OnExecutedIteration method.
base.OnExecutedIteration(
iteration,
sample,
levels,
parameters);
}
// Additional code here.
}