1 | using System;
|
---|
2 | using System.Collections;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.Linq;
|
---|
5 | using System.Text;
|
---|
6 | using HeuristicLab.Common;
|
---|
7 | using HeuristicLab.Core;
|
---|
8 | using HeuristicLab.Data;
|
---|
9 | using HeuristicLab.Optimization;
|
---|
10 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
11 |
|
---|
12 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
13 | // todo: storable, name, descr, ...
|
---|
14 | [StorableClass]
|
---|
15 | public class ParameterConfigurationTree : ParameterizedValueConfiguration, IEnumerable {
|
---|
16 |
|
---|
17 | [Storable]
|
---|
18 | private DoubleValue quality;
|
---|
19 | public DoubleValue Quality {
|
---|
20 | get { return quality; }
|
---|
21 | set {
|
---|
22 | if (quality != value) {
|
---|
23 | quality = value;
|
---|
24 | OnQualityChanged();
|
---|
25 | }
|
---|
26 | }
|
---|
27 | }
|
---|
28 |
|
---|
29 | [Storable]
|
---|
30 | private DoubleArray normalizedQualityAverages;
|
---|
31 | public DoubleArray NormalizedQualityAverages {
|
---|
32 | get { return normalizedQualityAverages; }
|
---|
33 | set {
|
---|
34 | if (normalizedQualityAverages != value) {
|
---|
35 | normalizedQualityAverages = value;
|
---|
36 | }
|
---|
37 | }
|
---|
38 | }
|
---|
39 |
|
---|
40 | [Storable]
|
---|
41 | private DoubleArray normalizedQualityDeviations;
|
---|
42 | public DoubleArray NormalizedQualityDeviations {
|
---|
43 | get { return normalizedQualityDeviations; }
|
---|
44 | set {
|
---|
45 | if (normalizedQualityDeviations != value) {
|
---|
46 | normalizedQualityDeviations = value;
|
---|
47 | }
|
---|
48 | }
|
---|
49 | }
|
---|
50 |
|
---|
51 | [Storable]
|
---|
52 | private DoubleArray normalizedEvaluatedSolutions;
|
---|
53 | public DoubleArray NormalizedEvaluatedSolutions {
|
---|
54 | get { return normalizedEvaluatedSolutions; }
|
---|
55 | set {
|
---|
56 | if (normalizedEvaluatedSolutions != value) {
|
---|
57 | normalizedEvaluatedSolutions = value;
|
---|
58 | }
|
---|
59 | }
|
---|
60 | }
|
---|
61 |
|
---|
62 | [Storable]
|
---|
63 | private DoubleArray bestQualities;
|
---|
64 | public DoubleArray BestQualities {
|
---|
65 | get { return bestQualities; }
|
---|
66 | set {
|
---|
67 | if (bestQualities != value) {
|
---|
68 | bestQualities = value;
|
---|
69 | }
|
---|
70 | }
|
---|
71 | }
|
---|
72 |
|
---|
73 | [Storable]
|
---|
74 | private DoubleArray averageQualities;
|
---|
75 | public DoubleArray AverageQualities {
|
---|
76 | get { return averageQualities; }
|
---|
77 | set { averageQualities = value; }
|
---|
78 | }
|
---|
79 |
|
---|
80 | [Storable]
|
---|
81 | private DoubleArray worstQualities;
|
---|
82 | public DoubleArray WorstQualities {
|
---|
83 | get { return worstQualities; }
|
---|
84 | set { worstQualities = value; }
|
---|
85 | }
|
---|
86 |
|
---|
87 | [Storable]
|
---|
88 | private DoubleArray qualityVariances;
|
---|
89 | public DoubleArray QualityVariances {
|
---|
90 | get { return qualityVariances; }
|
---|
91 | set { qualityVariances = value; }
|
---|
92 | }
|
---|
93 |
|
---|
94 | [Storable]
|
---|
95 | private DoubleArray qualityStandardDeviations;
|
---|
96 | public DoubleArray QualityStandardDeviations {
|
---|
97 | get { return qualityStandardDeviations; }
|
---|
98 | set { qualityStandardDeviations = value; }
|
---|
99 | }
|
---|
100 |
|
---|
101 | [Storable]
|
---|
102 | private ItemList<TimeSpanValue> averageExecutionTimes;
|
---|
103 | public ItemList<TimeSpanValue> AverageExecutionTimes {
|
---|
104 | get { return averageExecutionTimes; }
|
---|
105 | set { averageExecutionTimes = value; }
|
---|
106 | }
|
---|
107 |
|
---|
108 | [Storable]
|
---|
109 | private DoubleArray averageEvaluatedSolutions;
|
---|
110 | public DoubleArray AverageEvaluatedSolutions {
|
---|
111 | get { return averageEvaluatedSolutions; }
|
---|
112 | set { averageEvaluatedSolutions = value; }
|
---|
113 | }
|
---|
114 |
|
---|
115 | [Storable]
|
---|
116 | private IntValue repetitions;
|
---|
117 | public IntValue Repetitions {
|
---|
118 | get { return repetitions; }
|
---|
119 | set { repetitions = value; }
|
---|
120 | }
|
---|
121 |
|
---|
122 | [Storable]
|
---|
123 | protected RunCollection runs;
|
---|
124 | public RunCollection Runs {
|
---|
125 | get { return runs; }
|
---|
126 | set { runs = value; }
|
---|
127 | }
|
---|
128 |
|
---|
129 | [Storable]
|
---|
130 | protected IDictionary<string, IItem> parameters;
|
---|
131 | public IDictionary<string, IItem> Parameters {
|
---|
132 | get { return parameters; }
|
---|
133 | set { parameters = value; }
|
---|
134 | }
|
---|
135 |
|
---|
136 | public ParameterizedValueConfiguration AlgorithmConfiguration {
|
---|
137 | get {
|
---|
138 | return this.ParameterConfigurations.ElementAt(0).ValueConfigurations.First() as ParameterizedValueConfiguration;
|
---|
139 | }
|
---|
140 | }
|
---|
141 |
|
---|
142 | public ParameterizedValueConfiguration ProblemConfiguration {
|
---|
143 | get {
|
---|
144 | return this.ParameterConfigurations.ElementAt(1).ValueConfigurations.First() as ParameterizedValueConfiguration;
|
---|
145 | }
|
---|
146 | }
|
---|
147 |
|
---|
148 | #region constructors and cloning
|
---|
149 | public ParameterConfigurationTree(IAlgorithm algorithm, IProblem problem)
|
---|
150 | : base(null, algorithm.GetType(), false) {
|
---|
151 | this.Optimize = false;
|
---|
152 | this.IsOptimizable = false;
|
---|
153 | this.parameters = new Dictionary<string, IItem>();
|
---|
154 | this.Name = algorithm.ItemName;
|
---|
155 |
|
---|
156 | var algproblemitem = new AlgorithmProblemItem();
|
---|
157 | algproblemitem.AlgorithmParameter.Value = algorithm;
|
---|
158 | algproblemitem.ProblemParameter.Value = problem;
|
---|
159 | this.discoverValidValues = false;
|
---|
160 |
|
---|
161 | this.parameterConfigurations.Add(new SingleValuedParameterConfiguration("Algorithm", algproblemitem.AlgorithmParameter));
|
---|
162 | this.parameterConfigurations.Add(new SingleValuedParameterConfiguration("Problem", algproblemitem.ProblemParameter));
|
---|
163 |
|
---|
164 | // problems can be modified in the list of problem instances, so the parameters which are not Optimize=true,
|
---|
165 | // must not be modifiable in the parameter configuration tree. otherwise the parameter values would be ambiguous
|
---|
166 | ProblemConfiguration.ValuesReadOnly = true;
|
---|
167 | }
|
---|
168 | public ParameterConfigurationTree() { }
|
---|
169 | [StorableConstructor]
|
---|
170 | protected ParameterConfigurationTree(bool deserializing) : base(deserializing) { }
|
---|
171 | protected ParameterConfigurationTree(ParameterConfigurationTree original, Cloner cloner)
|
---|
172 | : base(original, cloner) {
|
---|
173 | this.quality = cloner.Clone(original.quality);
|
---|
174 | this.normalizedQualityAverages = cloner.Clone(original.normalizedQualityAverages);
|
---|
175 | this.normalizedQualityDeviations = cloner.Clone(original.normalizedQualityDeviations);
|
---|
176 | this.normalizedEvaluatedSolutions = cloner.Clone(original.normalizedEvaluatedSolutions);
|
---|
177 | this.bestQualities = cloner.Clone(original.BestQualities);
|
---|
178 | this.averageQualities = cloner.Clone(original.averageQualities);
|
---|
179 | this.worstQualities = cloner.Clone(original.worstQualities);
|
---|
180 | this.qualityStandardDeviations = cloner.Clone(original.qualityStandardDeviations);
|
---|
181 | this.qualityVariances = cloner.Clone(original.qualityVariances);
|
---|
182 | this.averageExecutionTimes = cloner.Clone(original.averageExecutionTimes);
|
---|
183 | this.averageEvaluatedSolutions = cloner.Clone(original.averageEvaluatedSolutions);
|
---|
184 | this.repetitions = cloner.Clone(original.repetitions);
|
---|
185 | this.runs = cloner.Clone(original.runs);
|
---|
186 | this.parameters = new Dictionary<string, IItem>();
|
---|
187 | foreach (var p in original.parameters) {
|
---|
188 | this.parameters.Add(p.Key, cloner.Clone(p.Value));
|
---|
189 | }
|
---|
190 | }
|
---|
191 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
192 | return new ParameterConfigurationTree(this, cloner);
|
---|
193 | }
|
---|
194 | [StorableHook(HookType.AfterDeserialization)]
|
---|
195 | private void AfterDeserialization() {
|
---|
196 | if(ProblemConfiguration != null) ProblemConfiguration.ValuesReadOnly = true;
|
---|
197 | }
|
---|
198 | #endregion
|
---|
199 |
|
---|
200 | public virtual void CollectResultValues(IDictionary<string, IItem> values) {
|
---|
201 | values.Add("RunsAverageExecutionTimes", AverageExecutionTimes);
|
---|
202 | values.Add("RunsAverageEvaluatedSolutions", AverageEvaluatedSolutions);
|
---|
203 | values.Add("Repetitions", Repetitions);
|
---|
204 | values.Add("RunsBestQualities", BestQualities);
|
---|
205 | values.Add("RunsAverageQualities", AverageQualities);
|
---|
206 | values.Add("RunsWorstQualities", WorstQualities);
|
---|
207 | values.Add("RunsQualityVariances", QualityVariances);
|
---|
208 | values.Add("RunsQualityStandardDeviations", QualityStandardDeviations);
|
---|
209 | values.Add("QualitiesNormalized", NormalizedQualityAverages);
|
---|
210 | values.Add("AverageQualityNormalized", Quality);
|
---|
211 | values.Add("Runs", Runs);
|
---|
212 | }
|
---|
213 |
|
---|
214 | public virtual void CollectParameterValues(IDictionary<string, IItem> values) {
|
---|
215 | foreach (var p in parameters) {
|
---|
216 | values.Add(p);
|
---|
217 | }
|
---|
218 | }
|
---|
219 |
|
---|
220 | #region Events
|
---|
221 | public event EventHandler QualityChanged;
|
---|
222 | private void OnQualityChanged() {
|
---|
223 | var handler = QualityChanged;
|
---|
224 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
225 | }
|
---|
226 |
|
---|
227 | private void Quality_ValueChanged(object sender, EventArgs e) {
|
---|
228 | OnQualityChanged();
|
---|
229 | }
|
---|
230 | #endregion
|
---|
231 |
|
---|
232 | public override void Parameterize(IParameterizedItem item) {
|
---|
233 | this.parameters.Clear();
|
---|
234 | var algorithm = item as IAlgorithm;
|
---|
235 | var problem = algorithm.Problem;
|
---|
236 |
|
---|
237 | ProblemConfiguration.Parameterize(problem);
|
---|
238 | AlgorithmConfiguration.Parameterize(algorithm);
|
---|
239 |
|
---|
240 | algorithm.CollectParameterValues(this.Parameters);
|
---|
241 | }
|
---|
242 |
|
---|
243 | public Experiment GenerateExperiment(IAlgorithm algorithm, bool createBatchRuns, int repetitions) {
|
---|
244 | Experiment experiment = new Experiment();
|
---|
245 | foreach (ParameterizedValueConfiguration combination in this) {
|
---|
246 | IAlgorithm clonedAlg = (IAlgorithm)algorithm.Clone();
|
---|
247 | clonedAlg.Name = combination.ParameterInfoString;
|
---|
248 | combination.Parameterize(clonedAlg);
|
---|
249 | clonedAlg.StoreAlgorithmInEachRun = false;
|
---|
250 | if (createBatchRuns) {
|
---|
251 | BatchRun batchRun = new BatchRun(string.Format("BatchRun: {0}", combination.ParameterInfoString));
|
---|
252 | batchRun.Optimizer = clonedAlg;
|
---|
253 | batchRun.Repetitions = repetitions;
|
---|
254 | experiment.Optimizers.Add(batchRun);
|
---|
255 | } else {
|
---|
256 | experiment.Optimizers.Add(clonedAlg);
|
---|
257 | }
|
---|
258 | }
|
---|
259 | return experiment;
|
---|
260 | }
|
---|
261 |
|
---|
262 | public Experiment GenerateExperiment(IAlgorithm algorithm) {
|
---|
263 | return GenerateExperiment(algorithm, false, 0);
|
---|
264 | }
|
---|
265 |
|
---|
266 | public IEnumerator GetEnumerator() {
|
---|
267 | IEnumerator enumerator = new ParameterCombinationsEnumerator(this);
|
---|
268 | enumerator.Reset();
|
---|
269 | return enumerator;
|
---|
270 | }
|
---|
271 |
|
---|
272 | /// <summary>
|
---|
273 | /// returns the number of possible parameter combinations
|
---|
274 | /// </summary>
|
---|
275 | /// <param name="max">algorithm stops counting when max is reached. zero for infinite counting</param>
|
---|
276 | /// <returns></returns>
|
---|
277 | public long GetCombinationCount(long max) {
|
---|
278 | long cnt = 0;
|
---|
279 | foreach (var c in this) {
|
---|
280 | cnt++;
|
---|
281 | if (max > 0 && cnt >= max) {
|
---|
282 | return cnt;
|
---|
283 | }
|
---|
284 | }
|
---|
285 | return cnt;
|
---|
286 | }
|
---|
287 |
|
---|
288 | public IOptimizable GetRandomOptimizable(IRandom random) {
|
---|
289 | List<IOptimizable> allOptimizables = GetAllOptimizables();
|
---|
290 | return allOptimizables[random.Next(allOptimizables.Count)];
|
---|
291 | }
|
---|
292 |
|
---|
293 | public override string ToString() {
|
---|
294 | return this.Name;
|
---|
295 | }
|
---|
296 |
|
---|
297 | public IRun ToRun(bool clearParameters) {
|
---|
298 | return ToRun(this.ParameterInfoString, clearParameters);
|
---|
299 | }
|
---|
300 |
|
---|
301 | public IRun ToRun(string name, bool clearParameters) {
|
---|
302 | IRun run = new Run();
|
---|
303 | run.Name = name;
|
---|
304 | this.CollectResultValues(run.Results);
|
---|
305 | this.CollectParameterValues(run.Parameters);
|
---|
306 | if(clearParameters) MetaOptimizationUtil.ClearParameters(run, this.GetOptimizedParameterNames());
|
---|
307 | return run;
|
---|
308 | }
|
---|
309 |
|
---|
310 | public override string ParameterInfoString {
|
---|
311 | get {
|
---|
312 | string algorithmInfo = this.AlgorithmConfiguration.ParameterInfoString;
|
---|
313 | string problemInfo = this.ProblemConfiguration.ParameterInfoString;
|
---|
314 | var sb = new StringBuilder();
|
---|
315 | if (!string.IsNullOrEmpty(algorithmInfo)) {
|
---|
316 | sb.Append("Algorithm (");
|
---|
317 | sb.Append(algorithmInfo);
|
---|
318 | sb.Append(")");
|
---|
319 | }
|
---|
320 | if (!string.IsNullOrEmpty(problemInfo)) {
|
---|
321 | if (sb.Length > 0)
|
---|
322 | sb.Append(", ");
|
---|
323 | sb.Append("Problem( ");
|
---|
324 | sb.Append(problemInfo);
|
---|
325 | sb.Append(")");
|
---|
326 | }
|
---|
327 | return sb.ToString();
|
---|
328 | }
|
---|
329 | }
|
---|
330 |
|
---|
331 | public override void CollectOptimizedParameterNames(List<string> parameterNames, string prefix) {
|
---|
332 | AlgorithmConfiguration.CollectOptimizedParameterNames(parameterNames, string.Empty);
|
---|
333 | ProblemConfiguration.CollectOptimizedParameterNames(parameterNames, string.Empty);
|
---|
334 | }
|
---|
335 | }
|
---|
336 | }
|
---|