Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/DiscriminantFunctionClassificationModel.cs @ 8638

Last change on this file since 8638 was 8623, checked in by gkronber, 12 years ago

#1902 implemented LS Gaussian Process classification

File size: 5.5 KB
RevLine 
[5649]1#region License Information
2/* HeuristicLab
[7259]3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[5649]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
[5777]22using System;
[5649]23using System.Collections.Generic;
24using System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Problems.DataAnalysis {
30  /// <summary>
31  /// Represents discriminant function classification data analysis models.
32  /// </summary>
33  [StorableClass]
34  [Item("DiscriminantFunctionClassificationModel", "Represents a classification model that uses a discriminant function and classification thresholds.")]
[6604]35  public abstract class DiscriminantFunctionClassificationModel : NamedItem, IDiscriminantFunctionClassificationModel {
[5649]36    [Storable]
37    private IRegressionModel model;
[5736]38
[5649]39    [Storable]
40    private double[] classValues;
[5678]41    public IEnumerable<double> ClassValues {
42      get { return (double[])classValues.Clone(); }
[5736]43      private set { classValues = value.ToArray(); }
[5678]44    }
[5736]45
[5678]46    [Storable]
47    private double[] thresholds;
48    public IEnumerable<double> Thresholds {
49      get { return (IEnumerable<double>)thresholds.Clone(); }
[5736]50      private set { thresholds = value.ToArray(); }
[5678]51    }
[5649]52
[8623]53    private IDiscriminantFunctionThresholdCalculator thresholdCalculator;
54    [Storable]
55    public IDiscriminantFunctionThresholdCalculator ThresholdCalculator {
56      get { return thresholdCalculator; }
57      private set { thresholdCalculator = value; }
58    }
[5678]59
[8623]60
[5649]61    [StorableConstructor]
[5681]62    protected DiscriminantFunctionClassificationModel(bool deserializing) : base(deserializing) { }
[5649]63    protected DiscriminantFunctionClassificationModel(DiscriminantFunctionClassificationModel original, Cloner cloner)
64      : base(original, cloner) {
65      model = cloner.Clone(original.model);
66      classValues = (double[])original.classValues.Clone();
[5678]67      thresholds = (double[])original.thresholds.Clone();
[5649]68    }
[5736]69
[8623]70    public DiscriminantFunctionClassificationModel(IRegressionModel model, IDiscriminantFunctionThresholdCalculator thresholdCalculator)
[5649]71      : base() {
72      this.name = ItemName;
73      this.description = ItemDescription;
74      this.model = model;
[8623]75      this.classValues = new double[0];
76      this.thresholds = new double[0];
77      this.thresholdCalculator = thresholdCalculator;
[5649]78    }
79
[8623]80    [StorableHook(HookType.AfterDeserialization)]
81    private void AfterDeserialization() {
82      if (ThresholdCalculator == null) ThresholdCalculator = new AccuracyMaximizationThresholdCalculator();
83    }
84
[5736]85    public void SetThresholdsAndClassValues(IEnumerable<double> thresholds, IEnumerable<double> classValues) {
86      var classValuesArr = classValues.ToArray();
87      var thresholdsArr = thresholds.ToArray();
88      if (thresholdsArr.Length != classValuesArr.Length) throw new ArgumentException();
89
90      this.classValues = classValuesArr;
91      this.thresholds = thresholdsArr;
92      OnThresholdsChanged(EventArgs.Empty);
93    }
94
[8623]95    public virtual void RecalculateModelParameters(IClassificationProblemData problemData, IEnumerable<int> rows) {
96      double[] classValues;
97      double[] thresholds;
98      var targetClassValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows);
99      var estimatedTrainingValues = GetEstimatedValues(problemData.Dataset, rows);
100      thresholdCalculator.Calculate(problemData, estimatedTrainingValues, targetClassValues, out classValues, out thresholds);
101      SetThresholdsAndClassValues(thresholds, classValues);
102    }
103
104
[5649]105    public IEnumerable<double> GetEstimatedValues(Dataset dataset, IEnumerable<int> rows) {
106      return model.GetEstimatedValues(dataset, rows);
107    }
108
109    public IEnumerable<double> GetEstimatedClassValues(Dataset dataset, IEnumerable<int> rows) {
[8623]110      if (!Thresholds.Any() && !ClassValues.Any()) throw new ArgumentException("No thresholds and class values were set for the current classification model.");
[5649]111      foreach (var x in GetEstimatedValues(dataset, rows)) {
112        int classIndex = 0;
[5678]113        // find first threshold value which is larger than x => class index = threshold index + 1
[5649]114        for (int i = 0; i < thresholds.Length; i++) {
115          if (x > thresholds[i]) classIndex++;
116          else break;
117        }
[5736]118        yield return classValues.ElementAt(classIndex - 1);
[5649]119      }
120    }
[5678]121    #region events
122    public event EventHandler ThresholdsChanged;
123    protected virtual void OnThresholdsChanged(EventArgs e) {
124      var listener = ThresholdsChanged;
125      if (listener != null) listener(this, e);
126    }
[5649]127    #endregion
[6604]128
129    public abstract IDiscriminantFunctionClassificationSolution CreateDiscriminantFunctionClassificationSolution(IClassificationProblemData problemData);
130    public abstract IClassificationSolution CreateClassificationSolution(IClassificationProblemData problemData);
[5649]131  }
132}
Note: See TracBrowser for help on using the repository browser.