Changeset 13801 for trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification
- Timestamp:
- 04/27/16 10:46:57 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationPerformanceMeasures.cs
r13101 r13801 153 153 Add(new Result(TestF1ScoreResultName, "The F1 score of the model on the test partition.", new DoubleValue())); 154 154 Add(new Result(TestMatthewsCorrelationResultName, "The Matthews correlation value of the model on the test partition.", new DoubleValue())); 155 156 Reset(); 157 } 158 159 160 public void Reset() { 155 161 TrainingTruePositiveRate = double.NaN; 156 162 TrainingTrueNegativeRate = double.NaN; -
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationSolutionBase.cs
r13102 r13801 129 129 TestNormalizedGiniCoefficient = testNormalizedGini; 130 130 131 ClassificationPerformanceMeasures.Reset(); 132 131 133 trainingPerformanceCalculator.Calculate(originalTrainingClassValues, estimatedTrainingClassValues); 132 134 if (trainingPerformanceCalculator.ErrorState == OnlineCalculatorError.None)
Note: See TracChangeset
for help on using the changeset viewer.