[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] | 22 | using System;
|
---|
[5649] | 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.")]
|
---|
[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 |
|
---|
[5678] | 53 |
|
---|
[5649] | 54 | [StorableConstructor]
|
---|
[5681] | 55 | protected DiscriminantFunctionClassificationModel(bool deserializing) : base(deserializing) { }
|
---|
[5649] | 56 | protected DiscriminantFunctionClassificationModel(DiscriminantFunctionClassificationModel original, Cloner cloner)
|
---|
| 57 | : base(original, cloner) {
|
---|
| 58 | model = cloner.Clone(original.model);
|
---|
| 59 | classValues = (double[])original.classValues.Clone();
|
---|
[5678] | 60 | thresholds = (double[])original.thresholds.Clone();
|
---|
[5649] | 61 | }
|
---|
[5736] | 62 |
|
---|
| 63 | public DiscriminantFunctionClassificationModel(IRegressionModel model)
|
---|
[5649] | 64 | : base() {
|
---|
| 65 | this.name = ItemName;
|
---|
| 66 | this.description = ItemDescription;
|
---|
| 67 | this.model = model;
|
---|
[5736] | 68 | this.classValues = new double[] { 0.0 };
|
---|
| 69 | this.thresholds = new double[] { double.NegativeInfinity };
|
---|
[5649] | 70 | }
|
---|
| 71 |
|
---|
[5736] | 72 | public void SetThresholdsAndClassValues(IEnumerable<double> thresholds, IEnumerable<double> classValues) {
|
---|
| 73 | var classValuesArr = classValues.ToArray();
|
---|
| 74 | var thresholdsArr = thresholds.ToArray();
|
---|
| 75 | if (thresholdsArr.Length != classValuesArr.Length) throw new ArgumentException();
|
---|
| 76 |
|
---|
| 77 | this.classValues = classValuesArr;
|
---|
| 78 | this.thresholds = thresholdsArr;
|
---|
| 79 | OnThresholdsChanged(EventArgs.Empty);
|
---|
| 80 | }
|
---|
| 81 |
|
---|
[5649] | 82 | public IEnumerable<double> GetEstimatedValues(Dataset dataset, IEnumerable<int> rows) {
|
---|
| 83 | return model.GetEstimatedValues(dataset, rows);
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 | public IEnumerable<double> GetEstimatedClassValues(Dataset dataset, IEnumerable<int> rows) {
|
---|
| 87 | foreach (var x in GetEstimatedValues(dataset, rows)) {
|
---|
| 88 | int classIndex = 0;
|
---|
[5678] | 89 | // find first threshold value which is larger than x => class index = threshold index + 1
|
---|
[5649] | 90 | for (int i = 0; i < thresholds.Length; i++) {
|
---|
| 91 | if (x > thresholds[i]) classIndex++;
|
---|
| 92 | else break;
|
---|
| 93 | }
|
---|
[5736] | 94 | yield return classValues.ElementAt(classIndex - 1);
|
---|
[5649] | 95 | }
|
---|
| 96 | }
|
---|
[5678] | 97 | #region events
|
---|
| 98 | public event EventHandler ThresholdsChanged;
|
---|
| 99 | protected virtual void OnThresholdsChanged(EventArgs e) {
|
---|
| 100 | var listener = ThresholdsChanged;
|
---|
| 101 | if (listener != null) listener(this, e);
|
---|
| 102 | }
|
---|
[5649] | 103 | #endregion
|
---|
[6604] | 104 |
|
---|
| 105 | public abstract IDiscriminantFunctionClassificationSolution CreateDiscriminantFunctionClassificationSolution(IClassificationProblemData problemData);
|
---|
| 106 | public abstract IClassificationSolution CreateClassificationSolution(IClassificationProblemData problemData);
|
---|
[5649] | 107 | }
|
---|
| 108 | }
|
---|