Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Nca/NcaModel.cs @ 14185

Last change on this file since 14185 was 14185, checked in by swagner, 8 years ago

#2526: Updated year of copyrights in license headers

File size: 4.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.Collections.Generic;
23using System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using HeuristicLab.Problems.DataAnalysis;
28
29namespace HeuristicLab.Algorithms.DataAnalysis {
30  [Item("NCA Model", "")]
31  [StorableClass]
32  public class NcaModel : ClassificationModel, INcaModel {
33    public override IEnumerable<string> VariablesUsedForPrediction {
34      get { return allowedInputVariables; }
35    }
36
37    [Storable]
38    private double[,] transformationMatrix;
39    public double[,] TransformationMatrix {
40      get { return (double[,])transformationMatrix.Clone(); }
41    }
42    [Storable]
43    private string[] allowedInputVariables;
44    [Storable]
45    private INearestNeighbourModel nnModel;
46    [Storable]
47    private double[] classValues;
48
49    [StorableConstructor]
50    protected NcaModel(bool deserializing) : base(deserializing) { }
51    protected NcaModel(NcaModel original, Cloner cloner)
52      : base(original, cloner) {
53      this.transformationMatrix = (double[,])original.transformationMatrix.Clone();
54      this.allowedInputVariables = (string[])original.allowedInputVariables.Clone();
55      this.nnModel = cloner.Clone(original.nnModel);
56      this.classValues = (double[])original.classValues.Clone();
57    }
58    public NcaModel(int k, double[,] transformationMatrix, IDataset dataset, IEnumerable<int> rows, string targetVariable, IEnumerable<string> allowedInputVariables, double[] classValues)
59      : base(targetVariable) {
60      Name = ItemName;
61      Description = ItemDescription;
62      this.transformationMatrix = (double[,])transformationMatrix.Clone();
63      this.allowedInputVariables = allowedInputVariables.ToArray();
64      this.classValues = (double[])classValues.Clone();
65
66      var ds = ReduceDataset(dataset, rows);
67      nnModel = new NearestNeighbourModel(ds, Enumerable.Range(0, ds.Rows), k, ds.VariableNames.Last(), ds.VariableNames.Take(transformationMatrix.GetLength(1)), classValues);
68    }
69
70    public override IDeepCloneable Clone(Cloner cloner) {
71      return new NcaModel(this, cloner);
72    }
73
74    public override IEnumerable<double> GetEstimatedClassValues(IDataset dataset, IEnumerable<int> rows) {
75      var ds = ReduceDataset(dataset, rows);
76      return nnModel.GetEstimatedClassValues(ds, Enumerable.Range(0, ds.Rows));
77    }
78
79    public override IClassificationSolution CreateClassificationSolution(IClassificationProblemData problemData) {
80      return new NcaClassificationSolution(this, new ClassificationProblemData(problemData));
81    }
82
83    INcaClassificationSolution INcaModel.CreateClassificationSolution(IClassificationProblemData problemData) {
84      return new NcaClassificationSolution(this, new ClassificationProblemData(problemData));
85    }
86
87    public double[,] Reduce(IDataset dataset, IEnumerable<int> rows) {
88      var data = AlglibUtil.PrepareInputMatrix(dataset, allowedInputVariables, rows);
89
90      var targets = dataset.GetDoubleValues(TargetVariable, rows).ToArray();
91      var result = new double[data.GetLength(0), transformationMatrix.GetLength(1) + 1];
92      for (int i = 0; i < data.GetLength(0); i++)
93        for (int j = 0; j < data.GetLength(1); j++) {
94          for (int x = 0; x < transformationMatrix.GetLength(1); x++) {
95            result[i, x] += data[i, j] * transformationMatrix[j, x];
96          }
97          result[i, transformationMatrix.GetLength(1)] = targets[i];
98        }
99      return result;
100    }
101
102    public Dataset ReduceDataset(IDataset dataset, IEnumerable<int> rows) {
103      return new Dataset(Enumerable
104          .Range(0, transformationMatrix.GetLength(1))
105          .Select(x => "X" + x.ToString())
106          .Concat(TargetVariable.ToEnumerable()),
107        Reduce(dataset, rows));
108    }
109  }
110}
Note: See TracBrowser for help on using the repository browser.