Changeset 13101
- Timestamp:
- 11/02/15 22:38:01 (9 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationSolutionComparisonView.cs
r13100 r13101 29 29 30 30 namespace HeuristicLab.Problems.DataAnalysis.Views.Classification { 31 [View("Classification Solution Compari ons")]31 [View("Classification Solution Comparison")] 32 32 [Content(typeof(IClassificationSolution))] 33 33 public partial class ClassificationSolutionComparisonView : DataAnalysisSolutionEvaluationView { -
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationPerformanceMeasures.cs
r13100 r13101 152 152 Add(new Result(TestFalseDiscoveryRateResultName, "The false discovery rate is the complement of the positive predictive value of the model on the test partition.", new PercentValue())); 153 153 Add(new Result(TestF1ScoreResultName, "The F1 score of the model on the test partition.", new DoubleValue())); 154 Add(new Result(T rainingMatthewsCorrelationResultName, "The Matthews correlation value of the model on the test partition.", new DoubleValue()));154 Add(new Result(TestMatthewsCorrelationResultName, "The Matthews correlation value of the model on the test partition.", new DoubleValue())); 155 155 TrainingTruePositiveRate = double.NaN; 156 156 TrainingTrueNegativeRate = double.NaN;
Note: See TracChangeset
for help on using the changeset viewer.