Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/20/09 17:38:19 (15 years ago)
Author:
gkronber
Message:

Worked on different dispatching of deterministic and non-deterministic modeling algorithms. #635

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.SupportVectorMachines/3.2/SupportVectorRegression.cs

    r1869 r1873  
    140140      ((ItemList<StringData>)collector.GetVariable("VariableNames").Value).Add(new StringData("Nu"));
    141141      ((ItemList<StringData>)collector.GetVariable("VariableNames").Value).Add(new StringData("Cost"));
    142       ((ItemList<StringData>)collector.GetVariable("VariableNames").Value).Add(new StringData("ValidationMSE"));
     142      ((ItemList<StringData>)collector.GetVariable("VariableNames").Value).Add(new StringData("ValidationQuality"));
    143143      modelProcessor.AddSubOperator(collector);
    144144
    145145      BestSolutionStorer solStorer = new BestSolutionStorer();
    146       solStorer.GetVariableInfo("Quality").ActualName = "ValidationMSE";
     146      solStorer.GetVariableInfo("Quality").ActualName = "ValidationQuality";
    147147      solStorer.GetVariableInfo("Maximization").Local = true;
    148148      solStorer.GetVariableInfo("BestSolution").ActualName = "BestValidationSolution";
     
    201201      mseEvaluator.Name = p + "MseEvaluator";
    202202      mseEvaluator.GetVariableInfo("Values").ActualName = p + "Values";
    203       mseEvaluator.GetVariableInfo("MSE").ActualName = p + "MSE";
     203      mseEvaluator.GetVariableInfo("MSE").ActualName = p + "Quality";
    204204      SimpleR2Evaluator r2Evaluator = new SimpleR2Evaluator();
    205205      r2Evaluator.Name = p + "R2Evaluator";
Note: See TracChangeset for help on using the changeset viewer.