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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using HeuristicLab.Common;
|
---|
26 | using HeuristicLab.Core;
|
---|
27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
28 |
|
---|
29 | namespace 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.")]
|
---|
35 | public class DiscriminantFunctionClassificationModel : NamedItem, IDiscriminantFunctionClassificationModel {
|
---|
36 | [Storable]
|
---|
37 | private IRegressionModel model;
|
---|
38 |
|
---|
39 | [Storable]
|
---|
40 | private double[] classValues;
|
---|
41 | public IEnumerable<double> ClassValues {
|
---|
42 | get { return (double[])classValues.Clone(); }
|
---|
43 | private set { classValues = value.ToArray(); }
|
---|
44 | }
|
---|
45 |
|
---|
46 | [Storable]
|
---|
47 | private double[] thresholds;
|
---|
48 | public IEnumerable<double> Thresholds {
|
---|
49 | get { return (IEnumerable<double>)thresholds.Clone(); }
|
---|
50 | private set { thresholds = value.ToArray(); }
|
---|
51 | }
|
---|
52 |
|
---|
53 |
|
---|
54 | [StorableConstructor]
|
---|
55 | protected DiscriminantFunctionClassificationModel(bool deserializing) : base(deserializing) { }
|
---|
56 | protected DiscriminantFunctionClassificationModel(DiscriminantFunctionClassificationModel original, Cloner cloner)
|
---|
57 | : base(original, cloner) {
|
---|
58 | model = cloner.Clone(original.model);
|
---|
59 | classValues = (double[])original.classValues.Clone();
|
---|
60 | thresholds = (double[])original.thresholds.Clone();
|
---|
61 | }
|
---|
62 |
|
---|
63 | public DiscriminantFunctionClassificationModel(IRegressionModel model)
|
---|
64 | : base() {
|
---|
65 | this.name = ItemName;
|
---|
66 | this.description = ItemDescription;
|
---|
67 | this.model = model;
|
---|
68 | this.classValues = new double[] { 0.0 };
|
---|
69 | this.thresholds = new double[] { double.NegativeInfinity };
|
---|
70 | }
|
---|
71 |
|
---|
72 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
73 | return new DiscriminantFunctionClassificationModel(this, cloner);
|
---|
74 | }
|
---|
75 |
|
---|
76 | public void SetThresholdsAndClassValues(IEnumerable<double> thresholds, IEnumerable<double> classValues) {
|
---|
77 | var classValuesArr = classValues.ToArray();
|
---|
78 | var thresholdsArr = thresholds.ToArray();
|
---|
79 | if (thresholdsArr.Length != classValuesArr.Length) throw new ArgumentException();
|
---|
80 |
|
---|
81 | this.classValues = classValuesArr;
|
---|
82 | this.thresholds = thresholdsArr;
|
---|
83 | OnThresholdsChanged(EventArgs.Empty);
|
---|
84 | }
|
---|
85 |
|
---|
86 | public IEnumerable<double> GetEstimatedValues(Dataset dataset, IEnumerable<int> rows) {
|
---|
87 | return model.GetEstimatedValues(dataset, rows);
|
---|
88 | }
|
---|
89 |
|
---|
90 | public IEnumerable<double> GetEstimatedClassValues(Dataset dataset, IEnumerable<int> rows) {
|
---|
91 | foreach (var x in GetEstimatedValues(dataset, rows)) {
|
---|
92 | int classIndex = 0;
|
---|
93 | // find first threshold value which is larger than x => class index = threshold index + 1
|
---|
94 | for (int i = 0; i < thresholds.Length; i++) {
|
---|
95 | if (x > thresholds[i]) classIndex++;
|
---|
96 | else break;
|
---|
97 | }
|
---|
98 | yield return classValues.ElementAt(classIndex - 1);
|
---|
99 | }
|
---|
100 | }
|
---|
101 | #region events
|
---|
102 | public event EventHandler ThresholdsChanged;
|
---|
103 | protected virtual void OnThresholdsChanged(EventArgs e) {
|
---|
104 | var listener = ThresholdsChanged;
|
---|
105 | if (listener != null) listener(this, e);
|
---|
106 | }
|
---|
107 | #endregion
|
---|
108 | }
|
---|
109 | }
|
---|