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 |
|
---|
22 | using HEAL.Attic;
|
---|
23 | using HeuristicLab.Collections;
|
---|
24 | using HeuristicLab.Common;
|
---|
25 | using HeuristicLab.Core;
|
---|
26 | using HeuristicLab.Data;
|
---|
27 | using HeuristicLab.Encodings.RealVectorEncoding;
|
---|
28 | using HeuristicLab.Optimization;
|
---|
29 | using HeuristicLab.Parameters;
|
---|
30 | using HeuristicLab.Problems.DataAnalysis;
|
---|
31 | using System;
|
---|
32 | using System.Collections.Generic;
|
---|
33 | using System.Linq;
|
---|
34 |
|
---|
35 | namespace HeuristicLab.GoalSeeking {
|
---|
36 | [Item("Goal seeking problem (single-objective)", "Represents a single objective optimization problem which uses configurable regression solutions to evaluate targets from a given dataset.")]
|
---|
37 | [Creatable("Problems")]
|
---|
38 | [StorableType("DD67A460-1A32-414A-AB18-E0C773B46689")]
|
---|
39 | public sealed class SingleObjectiveGoalSeekingProblem : SingleObjectiveBasicProblem<RealVectorEncoding>, IGoalSeekingProblem {
|
---|
40 | #region parameter names
|
---|
41 | private const string InputsParameterName = "Inputs";
|
---|
42 | private const string GoalsParameterName = "Goals";
|
---|
43 | private const string ModelsParameterName = "Models";
|
---|
44 | #endregion
|
---|
45 |
|
---|
46 | #region parameters
|
---|
47 | public IValueParameter<CheckedItemList<InputParameter>> InputsParameter {
|
---|
48 | get { return (IValueParameter<CheckedItemList<InputParameter>>)Parameters[InputsParameterName]; }
|
---|
49 | }
|
---|
50 | public IValueParameter<CheckedItemList<GoalParameter>> GoalsParameter {
|
---|
51 | get { return (IValueParameter<CheckedItemList<GoalParameter>>)Parameters[GoalsParameterName]; }
|
---|
52 | }
|
---|
53 | public IFixedValueParameter<ItemList<IRegressionModel>> ModelsParameter {
|
---|
54 | get { return (IFixedValueParameter<ItemList<IRegressionModel>>)Parameters[ModelsParameterName]; }
|
---|
55 | }
|
---|
56 | #endregion
|
---|
57 |
|
---|
58 | #region IGoalSeekingProblem implementation
|
---|
59 | public IEnumerable<IRegressionModel> Models {
|
---|
60 | get { return ModelsParameter.Value; }
|
---|
61 | }
|
---|
62 |
|
---|
63 | public IEnumerable<GoalParameter> Goals {
|
---|
64 | get { return GoalsParameter.Value; }
|
---|
65 | }
|
---|
66 |
|
---|
67 | public IEnumerable<InputParameter> Inputs {
|
---|
68 | get { return InputsParameter.Value; }
|
---|
69 | }
|
---|
70 |
|
---|
71 | public void AddModel(IRegressionModel model) {
|
---|
72 | var models = ModelsParameter.Value;
|
---|
73 | models.Add(model);
|
---|
74 | GoalSeekingUtil.RaiseEvent(this, ModelsChanged);
|
---|
75 | }
|
---|
76 |
|
---|
77 | public void RemoveModel(IRegressionModel model) {
|
---|
78 | var models = ModelsParameter.Value;
|
---|
79 | models.Remove(model);
|
---|
80 | GoalSeekingUtil.RaiseEvent(this, ModelsChanged);
|
---|
81 | }
|
---|
82 |
|
---|
83 | public void Configure(IRegressionProblemData problemData, int row) {
|
---|
84 | GoalSeekingUtil.Configure(Goals, Inputs, problemData, row);
|
---|
85 | }
|
---|
86 |
|
---|
87 | public IEnumerable<double> GetEstimatedGoalValues(IEnumerable<double> parameterValues, bool round = false) {
|
---|
88 | var ds = (ModifiableDataset)dataset.Clone();
|
---|
89 | foreach (var parameter in ActiveInputs.Zip(parameterValues, (p, v) => new { Name = p.Name, Value = v })) {
|
---|
90 | ds.SetVariableValue(parameter.Value, parameter.Name, 0);
|
---|
91 | }
|
---|
92 | var rows = new[] { 0 }; // actually just one row
|
---|
93 | return round ? ActiveGoals.Select(t => RoundToNearestStepMultiple(GetModels(t.Name).Average(m => m.GetEstimatedValues(ds, rows).Single()), t.Step))
|
---|
94 | : ActiveGoals.Select(t => GetModels(t.Name).Average(m => m.GetEstimatedValues(ds, rows).Single()));
|
---|
95 | }
|
---|
96 |
|
---|
97 | public event EventHandler ModelsChanged;
|
---|
98 | public event EventHandler TargetsChanged;
|
---|
99 | public event EventHandler ParametersChanged;
|
---|
100 | #endregion
|
---|
101 |
|
---|
102 | private IEnumerable<GoalParameter> ActiveGoals {
|
---|
103 | get { return Goals.Where(x => x.Active); }
|
---|
104 | }
|
---|
105 | private IEnumerable<InputParameter> ActiveInputs {
|
---|
106 | get { return Inputs.Where(x => x.Active); }
|
---|
107 | }
|
---|
108 |
|
---|
109 | [Storable]
|
---|
110 | private ModifiableDataset dataset; // modifiable dataset
|
---|
111 |
|
---|
112 | public override bool Maximization {
|
---|
113 | get { return false; }
|
---|
114 | }
|
---|
115 |
|
---|
116 | #region constructors
|
---|
117 | [StorableConstructor]
|
---|
118 | private SingleObjectiveGoalSeekingProblem(StorableConstructorFlag _) : base(_) { }
|
---|
119 |
|
---|
120 | private SingleObjectiveGoalSeekingProblem(SingleObjectiveGoalSeekingProblem original, Cloner cloner) : base(original, cloner) {
|
---|
121 | this.dataset = cloner.Clone(original.dataset);
|
---|
122 | RegisterEvents();
|
---|
123 | }
|
---|
124 |
|
---|
125 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
126 | return new SingleObjectiveGoalSeekingProblem(this, cloner);
|
---|
127 | }
|
---|
128 |
|
---|
129 | [StorableHook(HookType.AfterDeserialization)]
|
---|
130 | private void AfterDeserialization() {
|
---|
131 | RegisterEvents();
|
---|
132 | }
|
---|
133 |
|
---|
134 | public SingleObjectiveGoalSeekingProblem() {
|
---|
135 | dataset = new ModifiableDataset();
|
---|
136 | Parameters.Add(new ValueParameter<CheckedItemList<InputParameter>>(InputsParameterName));
|
---|
137 | Parameters.Add(new ValueParameter<CheckedItemList<GoalParameter>>(GoalsParameterName));
|
---|
138 | Parameters.Add(new FixedValueParameter<ItemList<IRegressionModel>>(ModelsParameterName, new ItemList<IRegressionModel>()));
|
---|
139 | EncodingParameter.Hidden = true;
|
---|
140 | EvaluatorParameter.Hidden = true;
|
---|
141 | SolutionCreatorParameter.Hidden = true;
|
---|
142 | RegisterEvents();
|
---|
143 | }
|
---|
144 | #endregion
|
---|
145 |
|
---|
146 | public override double Evaluate(Individual individual, IRandom random) {
|
---|
147 | var vector = individual.RealVector();
|
---|
148 | vector.ElementNames = ActiveInputs.Select(x => x.Name);
|
---|
149 | int i = 0;
|
---|
150 | // round vector according to parameter step sizes
|
---|
151 | foreach (var parameter in ActiveInputs) {
|
---|
152 | vector[i] = RoundToNearestStepMultiple(vector[i], parameter.Step);
|
---|
153 | ++i;
|
---|
154 | }
|
---|
155 | var estimatedValues = GetEstimatedGoalValues(vector, round: true);
|
---|
156 | return ActiveGoals.Zip(estimatedValues, (t, v) => new { Target = t, EstimatedValue = v })
|
---|
157 | .Average(x => x.Target.Weight * Math.Pow(x.EstimatedValue - x.Target.Goal, 2) / x.Target.Variance);
|
---|
158 | }
|
---|
159 |
|
---|
160 | public override void Analyze(Individual[] individuals, double[] qualities, ResultCollection results, IRandom random) {
|
---|
161 | var zipped = individuals.Zip(qualities, (ind, qual) => new { Individual = ind, Quality = qual }).OrderBy(x => x.Quality);
|
---|
162 | var best = Maximization ? zipped.Last() : zipped.First();
|
---|
163 | var realVector = best.Individual.RealVector();
|
---|
164 | const string resultName = "Best Solution";
|
---|
165 |
|
---|
166 | var columnNames = new List<string>();
|
---|
167 | foreach (var goal in ActiveGoals) {
|
---|
168 | columnNames.Add(goal.Name);
|
---|
169 | columnNames.Add(goal.Name + " (estimated)");
|
---|
170 | }
|
---|
171 | foreach (var input in ActiveInputs) {
|
---|
172 | columnNames.Add(input.Name);
|
---|
173 | columnNames.Add(input.Name + " (estimated)");
|
---|
174 | columnNames.Add(input.Name + " (deviation)");
|
---|
175 | }
|
---|
176 |
|
---|
177 | var m = new DoubleMatrix(1, columnNames.Count) { ColumnNames = columnNames };
|
---|
178 | int i = 0;
|
---|
179 |
|
---|
180 | var goals = ActiveGoals.Zip(GetEstimatedGoalValues(realVector, round: true),
|
---|
181 | (goal, value) => new { TargetValue = goal.Goal, EstimatedValue = value });
|
---|
182 |
|
---|
183 | foreach (var goal in goals) {
|
---|
184 | m[0, i] = goal.TargetValue;
|
---|
185 | m[0, i + 1] = goal.EstimatedValue;
|
---|
186 | i += 2;
|
---|
187 | }
|
---|
188 |
|
---|
189 | var inputs = ActiveInputs.Zip(realVector,
|
---|
190 | (input, value) => new { ActualValue = input.Value, EstimatedValue = value });
|
---|
191 |
|
---|
192 | foreach (var input in inputs) {
|
---|
193 | m[0, i] = input.ActualValue;
|
---|
194 | m[0, i + 1] = input.EstimatedValue;
|
---|
195 | m[0, i + 2] = m[0, i] - m[0, i + 1];
|
---|
196 | i += 3;
|
---|
197 | }
|
---|
198 |
|
---|
199 | if (!results.ContainsKey(resultName)) {
|
---|
200 | results.Add(new Result(resultName, m));
|
---|
201 | } else {
|
---|
202 | results[resultName].Value = m;
|
---|
203 | }
|
---|
204 |
|
---|
205 | base.Analyze(individuals, qualities, results, random);
|
---|
206 | }
|
---|
207 |
|
---|
208 | #region event handlers
|
---|
209 | private void RegisterEvents() {
|
---|
210 | ModelsParameter.Value.ItemsAdded += ModelCollection_ItemsChanged;
|
---|
211 | ModelsParameter.Value.ItemsRemoved += ModelCollection_ItemsChanged;
|
---|
212 | GoalsParameter.Value.CheckedItemsChanged += GoalSeekingUtil.Goals_CheckedItemsChanged;
|
---|
213 | InputsParameter.Value.CheckedItemsChanged += GoalSeekingUtil.Inputs_CheckedItemsChanged;
|
---|
214 |
|
---|
215 | foreach (var input in Inputs)
|
---|
216 | input.Changed += InputParameterChanged;
|
---|
217 |
|
---|
218 | foreach (var goal in Goals)
|
---|
219 | goal.Changed += GoalParameterChanged;
|
---|
220 | }
|
---|
221 |
|
---|
222 | private void ModelCollection_ItemsChanged(object sender, CollectionItemsChangedEventArgs<IndexedItem<IRegressionModel>> e) {
|
---|
223 | if (e.Items == null || !e.Items.Any()) return;
|
---|
224 | GoalSeekingUtil.UpdateInputs(InputsParameter.Value, Models, InputParameterChanged);
|
---|
225 | GoalSeekingUtil.UpdateEncoding(Encoding, ActiveInputs);
|
---|
226 | dataset = Inputs.Any() ? new ModifiableDataset(Inputs.Select(x => x.Name), Inputs.Select(x => new List<double> { x.Value })) : new ModifiableDataset();
|
---|
227 | GoalSeekingUtil.UpdateTargets(GoalsParameter.Value, Models, GoalParameterChanged);
|
---|
228 | GoalSeekingUtil.RaiseEvent(this, ModelsChanged);
|
---|
229 | }
|
---|
230 |
|
---|
231 | private void InputParameterChanged(object sender, EventArgs args) {
|
---|
232 | var inputParameter = (InputParameter)sender;
|
---|
233 | var inputs = InputsParameter.Value;
|
---|
234 | if (inputs.ItemChecked(inputParameter) != inputParameter.Active)
|
---|
235 | inputs.SetItemCheckedState(inputParameter, inputParameter.Active);
|
---|
236 | GoalSeekingUtil.UpdateEncoding(Encoding, ActiveInputs);
|
---|
237 | }
|
---|
238 |
|
---|
239 | private void GoalParameterChanged(object sender, EventArgs args) {
|
---|
240 | var goalParameter = (GoalParameter)sender;
|
---|
241 | var goals = GoalsParameter.Value;
|
---|
242 | if (goals.ItemChecked(goalParameter) != goalParameter.Active)
|
---|
243 | goals.SetItemCheckedState(goalParameter, goalParameter.Active);
|
---|
244 | }
|
---|
245 | #endregion
|
---|
246 |
|
---|
247 | #region helper methods
|
---|
248 | // method which throws an exception that can be caught in the event handler if the check fails
|
---|
249 | private void CheckIfDatasetContainsTarget(string target) {
|
---|
250 | if (dataset.DoubleVariables.All(x => x != target))
|
---|
251 | throw new ArgumentException(string.Format("Model target \"{0}\" does not exist in the dataset.", target));
|
---|
252 | }
|
---|
253 |
|
---|
254 | private IEnumerable<IRegressionModel> GetModels(string target) {
|
---|
255 | return Models.Where(x => x.TargetVariable == target);
|
---|
256 | }
|
---|
257 |
|
---|
258 | private static double RoundToNearestStepMultiple(double value, double step) {
|
---|
259 | return step * (long)Math.Round(value / step);
|
---|
260 | }
|
---|
261 | #endregion
|
---|
262 | }
|
---|
263 | }
|
---|