- Timestamp:
- 06/08/16 15:15:45 (8 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 13801
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis merged: 13801
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationPerformanceMeasures.cs
r13156 r13880 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; -
stable/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationSolutionBase.cs
r13156 r13880 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.