Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/DiscriminantFunctionClassificationSolutionBase.cs @ 6590

Last change on this file since 6590 was 6589, checked in by mkommend, 13 years ago

#1600: Adapted classification solutions to the same design as used by regression solutions.

File size: 8.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Optimization;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30
31namespace HeuristicLab.Problems.DataAnalysis {
32  /// <summary>
33  /// Represents a classification solution that uses a discriminant function and classification thresholds.
34  /// </summary>
35  [StorableClass]
36  [Item("DiscriminantFunctionClassificationSolution", "Represents a classification solution that uses a discriminant function and classification thresholds.")]
37  public abstract class DiscriminantFunctionClassificationSolutionBase : ClassificationSolutionBase, IDiscriminantFunctionClassificationSolution {
38    private const string TrainingMeanSquaredErrorResultName = "Mean squared error (training)";
39    private const string TestMeanSquaredErrorResultName = "Mean squared error (test)";
40    private const string TrainingRSquaredResultName = "Pearson's R² (training)";
41    private const string TestRSquaredResultName = "Pearson's R² (test)";
42
43    public new IDiscriminantFunctionClassificationModel Model {
44      get { return (IDiscriminantFunctionClassificationModel)base.Model; }
45      protected set {
46        if (value != null && value != Model) {
47          if (Model != null) {
48            Model.ThresholdsChanged -= new EventHandler(Model_ThresholdsChanged);
49          }
50          value.ThresholdsChanged += new EventHandler(Model_ThresholdsChanged);
51          base.Model = value;
52        }
53      }
54    }
55
56    #region Results
57    public double TrainingMeanSquaredError {
58      get { return ((DoubleValue)this[TrainingMeanSquaredErrorResultName].Value).Value; }
59      private set { ((DoubleValue)this[TrainingMeanSquaredErrorResultName].Value).Value = value; }
60    }
61    public double TestMeanSquaredError {
62      get { return ((DoubleValue)this[TestMeanSquaredErrorResultName].Value).Value; }
63      private set { ((DoubleValue)this[TestMeanSquaredErrorResultName].Value).Value = value; }
64    }
65    public double TrainingRSquared {
66      get { return ((DoubleValue)this[TrainingRSquaredResultName].Value).Value; }
67      private set { ((DoubleValue)this[TrainingRSquaredResultName].Value).Value = value; }
68    }
69    public double TestRSquared {
70      get { return ((DoubleValue)this[TestRSquaredResultName].Value).Value; }
71      private set { ((DoubleValue)this[TestRSquaredResultName].Value).Value = value; }
72    }
73    #endregion
74
75    [StorableConstructor]
76    protected DiscriminantFunctionClassificationSolutionBase(bool deserializing) : base(deserializing) { }
77    protected DiscriminantFunctionClassificationSolutionBase(DiscriminantFunctionClassificationSolutionBase original, Cloner cloner)
78      : base(original, cloner) {
79      RegisterEventHandler();
80    }
81    protected DiscriminantFunctionClassificationSolutionBase(IRegressionModel model, IClassificationProblemData problemData)
82      : this(new DiscriminantFunctionClassificationModel(model), problemData) {
83    }
84    protected DiscriminantFunctionClassificationSolutionBase(IDiscriminantFunctionClassificationModel model, IClassificationProblemData problemData)
85      : base(model, problemData) {
86      Add(new Result(TrainingMeanSquaredErrorResultName, "Mean of squared errors of the model on the training partition", new DoubleValue()));
87      Add(new Result(TestMeanSquaredErrorResultName, "Mean of squared errors of the model on the test partition", new DoubleValue()));
88      Add(new Result(TrainingRSquaredResultName, "Squared Pearson's correlation coefficient of the model output and the actual values on the training partition", new DoubleValue()));
89      Add(new Result(TestRSquaredResultName, "Squared Pearson's correlation coefficient of the model output and the actual values on the test partition", new DoubleValue()));
90
91      SetAccuracyMaximizingThresholds();
92      RegisterEventHandler();
93    }
94
95    [StorableHook(HookType.AfterDeserialization)]
96    private void AfterDeserialization() {
97      RegisterEventHandler();
98    }
99
100    protected override void OnModelChanged(EventArgs e) {
101      DeregisterEventHandler();
102      SetAccuracyMaximizingThresholds();
103      RegisterEventHandler();
104      base.OnModelChanged(e);
105    }
106
107    protected void CalculateRegressionResults() {
108      double[] estimatedTrainingValues = EstimatedTrainingValues.ToArray(); // cache values
109      double[] originalTrainingValues = ProblemData.Dataset.GetEnumeratedVariableValues(ProblemData.TargetVariable, ProblemData.TrainingIndizes).ToArray();
110      double[] estimatedTestValues = EstimatedTestValues.ToArray(); // cache values
111      double[] originalTestValues = ProblemData.Dataset.GetEnumeratedVariableValues(ProblemData.TargetVariable, ProblemData.TestIndizes).ToArray();
112
113      OnlineCalculatorError errorState;
114      double trainingMSE = OnlineMeanSquaredErrorCalculator.Calculate(estimatedTrainingValues, originalTrainingValues, out errorState);
115      TrainingMeanSquaredError = errorState == OnlineCalculatorError.None ? trainingMSE : double.NaN;
116      double testMSE = OnlineMeanSquaredErrorCalculator.Calculate(estimatedTestValues, originalTestValues, out errorState);
117      TestMeanSquaredError = errorState == OnlineCalculatorError.None ? testMSE : double.NaN;
118
119      double trainingR2 = OnlinePearsonsRSquaredCalculator.Calculate(estimatedTrainingValues, originalTrainingValues, out errorState);
120      TrainingRSquared = errorState == OnlineCalculatorError.None ? trainingR2 : double.NaN;
121      double testR2 = OnlinePearsonsRSquaredCalculator.Calculate(estimatedTestValues, originalTestValues, out errorState);
122      TestRSquared = errorState == OnlineCalculatorError.None ? testR2 : double.NaN;
123    }
124
125    private void RegisterEventHandler() {
126      Model.ThresholdsChanged += new EventHandler(Model_ThresholdsChanged);
127    }
128    private void DeregisterEventHandler() {
129      Model.ThresholdsChanged -= new EventHandler(Model_ThresholdsChanged);
130    }
131    private void Model_ThresholdsChanged(object sender, EventArgs e) {
132      OnModelThresholdsChanged(e);
133    }
134
135    public void SetAccuracyMaximizingThresholds() {
136      double[] classValues;
137      double[] thresholds;
138      var targetClassValues = ProblemData.Dataset.GetEnumeratedVariableValues(ProblemData.TargetVariable, ProblemData.TrainingIndizes);
139      AccuracyMaximizationThresholdCalculator.CalculateThresholds(ProblemData, EstimatedTrainingValues, targetClassValues, out classValues, out thresholds);
140
141      Model.SetThresholdsAndClassValues(thresholds, classValues);
142    }
143
144    public void SetClassDistibutionCutPointThresholds() {
145      double[] classValues;
146      double[] thresholds;
147      var targetClassValues = ProblemData.Dataset.GetEnumeratedVariableValues(ProblemData.TargetVariable, ProblemData.TrainingIndizes);
148      NormalDistributionCutPointsThresholdCalculator.CalculateThresholds(ProblemData, EstimatedTrainingValues, targetClassValues, out classValues, out thresholds);
149
150      Model.SetThresholdsAndClassValues(thresholds, classValues);
151    }
152
153    protected virtual void OnModelThresholdsChanged(EventArgs e) {
154      RecalculateResults();
155    }
156
157    public abstract IEnumerable<double> EstimatedValues { get; }
158    public abstract IEnumerable<double> EstimatedTrainingValues { get; }
159    public abstract IEnumerable<double> EstimatedTestValues { get; }
160
161    public abstract IEnumerable<double> GetEstimatedValues(IEnumerable<int> rows);
162  }
163}
Note: See TracBrowser for help on using the repository browser.