1 | #region License Information
|
---|
2 |
|
---|
3 | /* HeuristicLab
|
---|
4 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
5 | *
|
---|
6 | * This file is part of HeuristicLab.
|
---|
7 | *
|
---|
8 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
9 | * it under the terms of the GNU General Public License as published by
|
---|
10 | * the Free Software Foundation, either version 3 of the License, or
|
---|
11 | * (at your option) any later version.
|
---|
12 | *
|
---|
13 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | * GNU General Public License for more details.
|
---|
17 | *
|
---|
18 | * You should have received a copy of the GNU General Public License
|
---|
19 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #endregion
|
---|
23 |
|
---|
24 | using System;
|
---|
25 | using System.Collections.Generic;
|
---|
26 | using System.Linq;
|
---|
27 | using HeuristicLab.Common;
|
---|
28 | using HeuristicLab.Core;
|
---|
29 | using HeuristicLab.Data;
|
---|
30 | using HeuristicLab.Parameters;
|
---|
31 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
32 | using HeuristicLab.Random;
|
---|
33 |
|
---|
34 | namespace HeuristicLab.Problems.DataAnalysis {
|
---|
35 | [StorableClass]
|
---|
36 | [Item("RegressionSolution Impacts Calculator", "Calculation of the impacts of input variables for any regression solution")]
|
---|
37 | public sealed class RegressionSolutionVariableImpactsCalculator : ParameterizedNamedItem {
|
---|
38 | public enum ReplacementMethodEnum {
|
---|
39 | Median,
|
---|
40 | Average,
|
---|
41 | Shuffle,
|
---|
42 | Noise
|
---|
43 | }
|
---|
44 |
|
---|
45 | public enum DataPartitionEnum {
|
---|
46 | Training,
|
---|
47 | Test,
|
---|
48 | All
|
---|
49 | }
|
---|
50 |
|
---|
51 | private const string ReplacementParameterName = "Replacement Method";
|
---|
52 | private const string DataPartitionParameterName = "DataPartition";
|
---|
53 |
|
---|
54 | public IFixedValueParameter<EnumValue<ReplacementMethodEnum>> ReplacementParameter {
|
---|
55 | get { return (IFixedValueParameter<EnumValue<ReplacementMethodEnum>>)Parameters[ReplacementParameterName]; }
|
---|
56 | }
|
---|
57 | public IFixedValueParameter<EnumValue<DataPartitionEnum>> DataPartitionParameter {
|
---|
58 | get { return (IFixedValueParameter<EnumValue<DataPartitionEnum>>)Parameters[DataPartitionParameterName]; }
|
---|
59 | }
|
---|
60 |
|
---|
61 | public ReplacementMethodEnum ReplacementMethod {
|
---|
62 | get { return ReplacementParameter.Value.Value; }
|
---|
63 | set { ReplacementParameter.Value.Value = value; }
|
---|
64 | }
|
---|
65 | public DataPartitionEnum DataPartition {
|
---|
66 | get { return DataPartitionParameter.Value.Value; }
|
---|
67 | set { DataPartitionParameter.Value.Value = value; }
|
---|
68 | }
|
---|
69 |
|
---|
70 |
|
---|
71 | [StorableConstructor]
|
---|
72 | private RegressionSolutionVariableImpactsCalculator(bool deserializing) : base(deserializing) { }
|
---|
73 | private RegressionSolutionVariableImpactsCalculator(RegressionSolutionVariableImpactsCalculator original, Cloner cloner)
|
---|
74 | : base(original, cloner) { }
|
---|
75 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
76 | return new RegressionSolutionVariableImpactsCalculator(this, cloner);
|
---|
77 | }
|
---|
78 |
|
---|
79 | public RegressionSolutionVariableImpactsCalculator()
|
---|
80 | : base() {
|
---|
81 | Parameters.Add(new FixedValueParameter<EnumValue<ReplacementMethodEnum>>(ReplacementParameterName, "The replacement method for variables during impact calculation.", new EnumValue<ReplacementMethodEnum>(ReplacementMethodEnum.Median)));
|
---|
82 | Parameters.Add(new FixedValueParameter<EnumValue<DataPartitionEnum>>(DataPartitionParameterName, "The data partition on which the impacts are calculated.", new EnumValue<DataPartitionEnum>(DataPartitionEnum.Training)));
|
---|
83 | }
|
---|
84 |
|
---|
85 | //mkommend: annoying name clash with static method, open to better naming suggestions
|
---|
86 | public IEnumerable<Tuple<string, double>> Calculate(IRegressionSolution solution) {
|
---|
87 | return CalculateImpacts(solution, DataPartition, ReplacementMethod);
|
---|
88 | }
|
---|
89 |
|
---|
90 | public static IEnumerable<Tuple<string, double>> CalculateImpacts(IRegressionSolution solution,
|
---|
91 | DataPartitionEnum data = DataPartitionEnum.Training,
|
---|
92 | ReplacementMethodEnum replacement = ReplacementMethodEnum.Median) {
|
---|
93 |
|
---|
94 | var problemData = solution.ProblemData;
|
---|
95 | var dataset = problemData.Dataset;
|
---|
96 |
|
---|
97 | IEnumerable<int> rows;
|
---|
98 | IEnumerable<double> targetValues;
|
---|
99 | double originalR2 = -1;
|
---|
100 |
|
---|
101 | OnlineCalculatorError error;
|
---|
102 |
|
---|
103 | switch (data) {
|
---|
104 | case DataPartitionEnum.All:
|
---|
105 | rows = solution.ProblemData.AllIndices;
|
---|
106 | targetValues = problemData.TargetVariableValues.ToList();
|
---|
107 | originalR2 = OnlinePearsonsRCalculator.Calculate(problemData.TargetVariableValues, solution.EstimatedValues, out error);
|
---|
108 | if (error != OnlineCalculatorError.None) throw new InvalidOperationException("Error during R² calculation.");
|
---|
109 | originalR2 = originalR2 * originalR2;
|
---|
110 | break;
|
---|
111 | case DataPartitionEnum.Training:
|
---|
112 | rows = problemData.TrainingIndices;
|
---|
113 | targetValues = problemData.TargetVariableTrainingValues.ToList();
|
---|
114 | originalR2 = solution.TrainingRSquared;
|
---|
115 | break;
|
---|
116 | case DataPartitionEnum.Test:
|
---|
117 | rows = problemData.TestIndices;
|
---|
118 | targetValues = problemData.TargetVariableTestValues.ToList();
|
---|
119 | originalR2 = solution.TestRSquared;
|
---|
120 | break;
|
---|
121 | default: throw new ArgumentException(string.Format("DataPartition {0} cannot be handled.", data));
|
---|
122 | }
|
---|
123 |
|
---|
124 |
|
---|
125 | var impacts = new Dictionary<string, double>();
|
---|
126 | var modifiableDataset = ((Dataset)dataset).ToModifiable();
|
---|
127 |
|
---|
128 | foreach (var inputVariable in problemData.AllowedInputVariables) {
|
---|
129 | var newEstimates = EvaluateModelWithReplacedVariable(solution.Model, inputVariable, modifiableDataset, rows, replacement);
|
---|
130 | var newR2 = OnlinePearsonsRCalculator.Calculate(targetValues, newEstimates, out error);
|
---|
131 | if (error != OnlineCalculatorError.None) throw new InvalidOperationException("Error during R² calculation with replaced inputs.");
|
---|
132 |
|
---|
133 | newR2 = newR2 * newR2;
|
---|
134 | var impact = originalR2 - newR2;
|
---|
135 | impacts[inputVariable] = impact;
|
---|
136 | }
|
---|
137 | return impacts.OrderByDescending(i => i.Value).Select(i => Tuple.Create(i.Key, i.Value));
|
---|
138 | }
|
---|
139 |
|
---|
140 | private static IEnumerable<double> EvaluateModelWithReplacedVariable(IRegressionModel model, string variable, ModifiableDataset dataset, IEnumerable<int> rows, ReplacementMethodEnum replacement = ReplacementMethodEnum.Median) {
|
---|
141 | var originalValues = dataset.GetReadOnlyDoubleValues(variable).ToList();
|
---|
142 | double replacementValue;
|
---|
143 | List<double> replacementValues;
|
---|
144 | IRandom rand;
|
---|
145 |
|
---|
146 | switch (replacement) {
|
---|
147 | case ReplacementMethodEnum.Median:
|
---|
148 | replacementValue = rows.Select(r => originalValues[r]).Median();
|
---|
149 | replacementValues = Enumerable.Repeat(replacementValue, dataset.Rows).ToList();
|
---|
150 | break;
|
---|
151 | case ReplacementMethodEnum.Average:
|
---|
152 | replacementValue = rows.Select(r => originalValues[r]).Average();
|
---|
153 | replacementValues = Enumerable.Repeat(replacementValue, dataset.Rows).ToList();
|
---|
154 | break;
|
---|
155 | case ReplacementMethodEnum.Shuffle:
|
---|
156 | // new var has same empirical distribution but the relation to y is broken
|
---|
157 | rand = new FastRandom(31415);
|
---|
158 | replacementValues = rows.Select(r => originalValues[r]).Shuffle(rand).ToList();
|
---|
159 | break;
|
---|
160 | case ReplacementMethodEnum.Noise:
|
---|
161 | var avg = rows.Select(r => originalValues[r]).Average();
|
---|
162 | var stdDev = rows.Select(r => originalValues[r]).StandardDeviation();
|
---|
163 | rand = new FastRandom(31415);
|
---|
164 | replacementValues = rows.Select(_ => NormalDistributedRandom.NextDouble(rand, avg, stdDev)).ToList();
|
---|
165 | break;
|
---|
166 |
|
---|
167 | default:
|
---|
168 | throw new ArgumentException(string.Format("ReplacementMethod {0} cannot be handled.", replacement));
|
---|
169 | }
|
---|
170 |
|
---|
171 | dataset.ReplaceVariable(variable, replacementValues);
|
---|
172 | //mkommend: ToList is used on purpose to avoid lazy evaluation that could result in wrong estimates due to variable replacements
|
---|
173 | var estimates = model.GetEstimatedValues(dataset, rows).ToList();
|
---|
174 | dataset.ReplaceVariable(variable, originalValues);
|
---|
175 |
|
---|
176 | return estimates;
|
---|
177 | }
|
---|
178 | }
|
---|
179 | }
|
---|