private SerializableTransformFinder(
     string name,
     int maxNumIterations, double learningRate, double convergenceError,
     SerializableErrorMetric errorMetric)
 {
     this.name             = name;
     this.maxNumIterations = maxNumIterations;
     this.learningRate     = learningRate;
     this.convergenceError = convergenceError;
     this.errorMetric      = errorMetric;
 }
Пример #2
0
 private SerializableError(float errorThresholdScale, SerializableErrorMetric errorMetric)
 {
     this.errorThresholdScale = errorThresholdScale;
     this.errorMetric         = errorMetric;
 }