1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2018 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 | using HeuristicLab.Problems.DataAnalysis;
|
---|
29 |
|
---|
30 | namespace HeuristicLab.Algorithms.DataAnalysis {
|
---|
31 | /// <summary>
|
---|
32 | /// Represents a neural network ensembel model for regression and classification
|
---|
33 | /// </summary>
|
---|
34 | [StorableClass]
|
---|
35 | [Item("NeuralNetworkEnsembleModel", "Represents a neural network ensemble for regression and classification.")]
|
---|
36 | public sealed class NeuralNetworkEnsembleModel : ClassificationModel, INeuralNetworkEnsembleModel {
|
---|
37 |
|
---|
38 | private alglib.mlpensemble mlpEnsemble;
|
---|
39 | public alglib.mlpensemble MultiLayerPerceptronEnsemble {
|
---|
40 | get { return mlpEnsemble; }
|
---|
41 | set {
|
---|
42 | if (value != mlpEnsemble) {
|
---|
43 | if (value == null) throw new ArgumentNullException();
|
---|
44 | mlpEnsemble = value;
|
---|
45 | OnChanged(EventArgs.Empty);
|
---|
46 | }
|
---|
47 | }
|
---|
48 | }
|
---|
49 |
|
---|
50 | public override IEnumerable<string> VariablesUsedForPrediction {
|
---|
51 | get { return allowedInputVariables; }
|
---|
52 | }
|
---|
53 |
|
---|
54 | [Storable]
|
---|
55 | private string targetVariable;
|
---|
56 | [Storable]
|
---|
57 | private string[] allowedInputVariables;
|
---|
58 | [Storable]
|
---|
59 | private double[] classValues;
|
---|
60 | [StorableConstructor]
|
---|
61 | private NeuralNetworkEnsembleModel(bool deserializing)
|
---|
62 | : base(deserializing) {
|
---|
63 | if (deserializing)
|
---|
64 | mlpEnsemble = new alglib.mlpensemble();
|
---|
65 | }
|
---|
66 | private NeuralNetworkEnsembleModel(NeuralNetworkEnsembleModel original, Cloner cloner)
|
---|
67 | : base(original, cloner) {
|
---|
68 | mlpEnsemble = new alglib.mlpensemble();
|
---|
69 | string serializedEnsemble;
|
---|
70 | alglib.mlpeserialize(original.mlpEnsemble, out serializedEnsemble);
|
---|
71 | alglib.mlpeunserialize(serializedEnsemble, out this.mlpEnsemble);
|
---|
72 | targetVariable = original.targetVariable;
|
---|
73 | allowedInputVariables = (string[])original.allowedInputVariables.Clone();
|
---|
74 | if (original.classValues != null)
|
---|
75 | this.classValues = (double[])original.classValues.Clone();
|
---|
76 | }
|
---|
77 | public NeuralNetworkEnsembleModel(alglib.mlpensemble mlpEnsemble, string targetVariable, IEnumerable<string> allowedInputVariables, double[] classValues = null)
|
---|
78 | : base(targetVariable) {
|
---|
79 | this.name = ItemName;
|
---|
80 | this.description = ItemDescription;
|
---|
81 | this.mlpEnsemble = mlpEnsemble;
|
---|
82 | this.targetVariable = targetVariable;
|
---|
83 | this.allowedInputVariables = allowedInputVariables.ToArray();
|
---|
84 | if (classValues != null)
|
---|
85 | this.classValues = (double[])classValues.Clone();
|
---|
86 | }
|
---|
87 |
|
---|
88 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
89 | return new NeuralNetworkEnsembleModel(this, cloner);
|
---|
90 | }
|
---|
91 |
|
---|
92 | public IEnumerable<double> GetEstimatedValues(IDataset dataset, IEnumerable<int> rows) {
|
---|
93 | double[,] inputData = dataset.ToArray(allowedInputVariables, rows);
|
---|
94 |
|
---|
95 | int n = inputData.GetLength(0);
|
---|
96 | int columns = inputData.GetLength(1);
|
---|
97 | double[] x = new double[columns];
|
---|
98 | double[] y = new double[1];
|
---|
99 |
|
---|
100 | for (int row = 0; row < n; row++) {
|
---|
101 | for (int column = 0; column < columns; column++) {
|
---|
102 | x[column] = inputData[row, column];
|
---|
103 | }
|
---|
104 | // mlpeprocess writes data in mlpEnsemble and is therefore not thread-safe
|
---|
105 | lock (mlpEnsemble) {
|
---|
106 | alglib.mlpeprocess(mlpEnsemble, x, ref y);
|
---|
107 | }
|
---|
108 | yield return y[0];
|
---|
109 | }
|
---|
110 | }
|
---|
111 |
|
---|
112 | public override IEnumerable<double> GetEstimatedClassValues(IDataset dataset, IEnumerable<int> rows) {
|
---|
113 | double[,] inputData = dataset.ToArray(allowedInputVariables, rows);
|
---|
114 |
|
---|
115 | int n = inputData.GetLength(0);
|
---|
116 | int columns = inputData.GetLength(1);
|
---|
117 | double[] x = new double[columns];
|
---|
118 | double[] y = new double[classValues.Length];
|
---|
119 |
|
---|
120 | for (int row = 0; row < n; row++) {
|
---|
121 | for (int column = 0; column < columns; column++) {
|
---|
122 | x[column] = inputData[row, column];
|
---|
123 | }
|
---|
124 | // mlpeprocess writes data in mlpEnsemble and is therefore not thread-safe
|
---|
125 | lock (mlpEnsemble) {
|
---|
126 | alglib.mlpeprocess(mlpEnsemble, x, ref y);
|
---|
127 | }
|
---|
128 | // find class for with the largest probability value
|
---|
129 | int maxProbClassIndex = 0;
|
---|
130 | double maxProb = y[0];
|
---|
131 | for (int i = 1; i < y.Length; i++) {
|
---|
132 | if (maxProb < y[i]) {
|
---|
133 | maxProb = y[i];
|
---|
134 | maxProbClassIndex = i;
|
---|
135 | }
|
---|
136 | }
|
---|
137 | yield return classValues[maxProbClassIndex];
|
---|
138 | }
|
---|
139 | }
|
---|
140 |
|
---|
141 | public IRegressionSolution CreateRegressionSolution(IRegressionProblemData problemData) {
|
---|
142 | return new NeuralNetworkEnsembleRegressionSolution(this, new RegressionEnsembleProblemData(problemData));
|
---|
143 | }
|
---|
144 | public override IClassificationSolution CreateClassificationSolution(IClassificationProblemData problemData) {
|
---|
145 | return new NeuralNetworkEnsembleClassificationSolution(this, new ClassificationEnsembleProblemData(problemData));
|
---|
146 | }
|
---|
147 |
|
---|
148 | #region events
|
---|
149 | public event EventHandler Changed;
|
---|
150 | private void OnChanged(EventArgs e) {
|
---|
151 | var handlers = Changed;
|
---|
152 | if (handlers != null)
|
---|
153 | handlers(this, e);
|
---|
154 | }
|
---|
155 | #endregion
|
---|
156 |
|
---|
157 | #region persistence
|
---|
158 | [Storable]
|
---|
159 | private string MultiLayerPerceptronEnsembleNetwork {
|
---|
160 | get {
|
---|
161 | string serializedNetwork;
|
---|
162 | alglib.mlpeserialize(this.mlpEnsemble, out serializedNetwork);
|
---|
163 | return serializedNetwork;
|
---|
164 | }
|
---|
165 | set {
|
---|
166 | alglib.mlpeunserialize(value, out this.mlpEnsemble);
|
---|
167 | }
|
---|
168 | }
|
---|
169 |
|
---|
170 | [Storable]
|
---|
171 | private double[] MultiLayerPerceptronEnsembleColumnMeans {
|
---|
172 | get { return mlpEnsemble.innerobj.columnmeans; }
|
---|
173 | set {
|
---|
174 | mlpEnsemble.innerobj.columnmeans = value;
|
---|
175 | mlpEnsemble.innerobj.network.columnmeans = value;
|
---|
176 | }
|
---|
177 | }
|
---|
178 | [Storable]
|
---|
179 | private double[] MultiLayerPerceptronEnsembleColumnSigmas {
|
---|
180 | get { return mlpEnsemble.innerobj.columnsigmas; }
|
---|
181 | set {
|
---|
182 | mlpEnsemble.innerobj.columnsigmas = value;
|
---|
183 | mlpEnsemble.innerobj.network.columnsigmas = value;
|
---|
184 | }
|
---|
185 | }
|
---|
186 | [Storable(AllowOneWay = true)]
|
---|
187 | private double[] MultiLayerPerceptronEnsembleDfdnet {
|
---|
188 | set {
|
---|
189 | mlpEnsemble.innerobj.network.dfdnet = value;
|
---|
190 | }
|
---|
191 | }
|
---|
192 | [Storable]
|
---|
193 | private int MultiLayerPerceptronEnsembleSize {
|
---|
194 | get { return mlpEnsemble.innerobj.ensemblesize; }
|
---|
195 | set {
|
---|
196 | mlpEnsemble.innerobj.ensemblesize = value;
|
---|
197 | mlpEnsemble.innerobj.ensemblesize = value;
|
---|
198 | }
|
---|
199 | }
|
---|
200 | [Storable(AllowOneWay = true)]
|
---|
201 | private double[] MultiLayerPerceptronEnsembleNeurons {
|
---|
202 | set { mlpEnsemble.innerobj.network.neurons = value; }
|
---|
203 | }
|
---|
204 | [Storable(AllowOneWay = true)]
|
---|
205 | private double[] MultiLayerPerceptronEnsembleSerializedMlp {
|
---|
206 | set {
|
---|
207 | mlpEnsemble.innerobj.network.dfdnet = value;
|
---|
208 | }
|
---|
209 | }
|
---|
210 | [Storable(AllowOneWay = true)]
|
---|
211 | private int[] MultiLayerPerceptronStuctinfo {
|
---|
212 | set {
|
---|
213 | mlpEnsemble.innerobj.network.structinfo = value;
|
---|
214 | }
|
---|
215 | }
|
---|
216 |
|
---|
217 | [Storable]
|
---|
218 | private double[] MultiLayerPerceptronWeights {
|
---|
219 | get {
|
---|
220 | return mlpEnsemble.innerobj.weights;
|
---|
221 | }
|
---|
222 | set {
|
---|
223 | mlpEnsemble.innerobj.weights = value;
|
---|
224 | mlpEnsemble.innerobj.network.weights = value;
|
---|
225 | }
|
---|
226 | }
|
---|
227 | [Storable]
|
---|
228 | private double[] MultiLayerPerceptronY {
|
---|
229 | get {
|
---|
230 | return mlpEnsemble.innerobj.y;
|
---|
231 | }
|
---|
232 | set {
|
---|
233 | mlpEnsemble.innerobj.y = value;
|
---|
234 | mlpEnsemble.innerobj.network.y = value;
|
---|
235 | }
|
---|
236 | }
|
---|
237 | #endregion
|
---|
238 | }
|
---|
239 | }
|
---|