Free cookie consent management tool by TermsFeed Policy Generator

Changeset 13101


Ignore:
Timestamp:
11/02/15 22:38:01 (8 years ago)
Author:
gkronber
Message:

#1998: bug fixes (typo, duplicate result item)

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationSolutionComparisonView.cs

    r13100 r13101  
    2929
    3030namespace HeuristicLab.Problems.DataAnalysis.Views.Classification {
    31   [View("Classification Solution Comparions")]
     31  [View("Classification Solution Comparison")]
    3232  [Content(typeof(IClassificationSolution))]
    3333  public partial class ClassificationSolutionComparisonView : DataAnalysisSolutionEvaluationView {
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationPerformanceMeasures.cs

    r13100 r13101  
    152152      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()));
    153153      Add(new Result(TestF1ScoreResultName, "The F1 score of the model on the test partition.", new DoubleValue()));
    154       Add(new Result(TrainingMatthewsCorrelationResultName, "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()));
    155155      TrainingTruePositiveRate = double.NaN;
    156156      TrainingTrueNegativeRate = double.NaN;
Note: See TracChangeset for help on using the changeset viewer.