Changeset 1873 for trunk/sources/HeuristicLab.SupportVectorMachines
- Timestamp:
- 05/20/09 17:38:19 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.SupportVectorMachines/3.2/SupportVectorRegression.cs
r1869 r1873 140 140 ((ItemList<StringData>)collector.GetVariable("VariableNames").Value).Add(new StringData("Nu")); 141 141 ((ItemList<StringData>)collector.GetVariable("VariableNames").Value).Add(new StringData("Cost")); 142 ((ItemList<StringData>)collector.GetVariable("VariableNames").Value).Add(new StringData("Validation MSE"));142 ((ItemList<StringData>)collector.GetVariable("VariableNames").Value).Add(new StringData("ValidationQuality")); 143 143 modelProcessor.AddSubOperator(collector); 144 144 145 145 BestSolutionStorer solStorer = new BestSolutionStorer(); 146 solStorer.GetVariableInfo("Quality").ActualName = "Validation MSE";146 solStorer.GetVariableInfo("Quality").ActualName = "ValidationQuality"; 147 147 solStorer.GetVariableInfo("Maximization").Local = true; 148 148 solStorer.GetVariableInfo("BestSolution").ActualName = "BestValidationSolution"; … … 201 201 mseEvaluator.Name = p + "MseEvaluator"; 202 202 mseEvaluator.GetVariableInfo("Values").ActualName = p + "Values"; 203 mseEvaluator.GetVariableInfo("MSE").ActualName = p + " MSE";203 mseEvaluator.GetVariableInfo("MSE").ActualName = p + "Quality"; 204 204 SimpleR2Evaluator r2Evaluator = new SimpleR2Evaluator(); 205 205 r2Evaluator.Name = p + "R2Evaluator";
Note: See TracChangeset
for help on using the changeset viewer.