Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-MoveOperators/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/MultiObjective/SymbolicRegressionMultiObjectiveProblem.cs @ 8206

Last change on this file since 8206 was 8206, checked in by gkronber, 12 years ago

#1847: merged r8084:8205 from trunk into GP move operators branch

File size: 5.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Linq;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
30  [Item("Symbolic Regression Problem (multi objective)", "Represents a multi objective symbolic regression problem.")]
31  [StorableClass]
32  [Creatable("Problems")]
33  public class SymbolicRegressionMultiObjectiveProblem : SymbolicDataAnalysisMultiObjectiveProblem<IRegressionProblemData, ISymbolicRegressionMultiObjectiveEvaluator, ISymbolicDataAnalysisSolutionCreator>, IRegressionProblem {
34    private const double PunishmentFactor = 10;
35    private const int InitialMaximumTreeDepth = 8;
36    private const int InitialMaximumTreeLength = 25;
37    private const string EstimationLimitsParameterName = "EstimationLimits";
38    private const string EstimationLimitsParameterDescription = "The lower and upper limit for the estimated value that can be returned by the symbolic regression model.";
39
40    #region parameter properties
41    public IFixedValueParameter<DoubleLimit> EstimationLimitsParameter {
42      get { return (IFixedValueParameter<DoubleLimit>)Parameters[EstimationLimitsParameterName]; }
43    }
44    #endregion
45
46    #region properties
47    public DoubleLimit EstimationLimits {
48      get { return EstimationLimitsParameter.Value; }
49    }
50
51    #endregion
52
53    [StorableConstructor]
54    protected SymbolicRegressionMultiObjectiveProblem(bool deserializing) : base(deserializing) { }
55    protected SymbolicRegressionMultiObjectiveProblem(SymbolicRegressionMultiObjectiveProblem original, Cloner cloner)
56      : base(original, cloner) {
57      RegisterEventHandlers();
58    }
59    public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicRegressionMultiObjectiveProblem(this, cloner); }
60
61    public SymbolicRegressionMultiObjectiveProblem()
62      : base(new RegressionProblemData(), new SymbolicRegressionMultiObjectivePearsonRSquaredTreeSizeEvaluator(), new SymbolicDataAnalysisExpressionTreeCreator()) {
63      Parameters.Add(new FixedValueParameter<DoubleLimit>(EstimationLimitsParameterName, EstimationLimitsParameterDescription));
64
65      EstimationLimitsParameter.Hidden = true;
66
67      Maximization = new BoolArray(new bool[] { true, false });
68      MaximumSymbolicExpressionTreeDepth.Value = InitialMaximumTreeDepth;
69      MaximumSymbolicExpressionTreeLength.Value = InitialMaximumTreeLength;
70
71      RegisterEventHandlers();
72      ConfigureGrammarSymbols();
73      InitializeOperators();
74      UpdateEstimationLimits();
75    }
76
77    [StorableHook(HookType.AfterDeserialization)]
78    private void AfterDeserialization() {
79      RegisterEventHandlers();
80    }
81
82    private void RegisterEventHandlers() {
83      SymbolicExpressionTreeGrammarParameter.ValueChanged += (o, e) => ConfigureGrammarSymbols();
84    }
85
86    private void ConfigureGrammarSymbols() {
87      var grammar = SymbolicExpressionTreeGrammar as TypeCoherentExpressionGrammar;
88      if (grammar != null) grammar.ConfigureAsDefaultRegressionGrammar();
89    }
90
91    private void InitializeOperators() {
92      Operators.Add(new SymbolicRegressionMultiObjectiveTrainingBestSolutionAnalyzer());
93      Operators.Add(new SymbolicRegressionMultiObjectiveValidationBestSolutionAnalyzer());
94      ParameterizeOperators();
95    }
96
97    private void UpdateEstimationLimits() {
98      if (ProblemData.TrainingIndices.Any()) {
99        var targetValues = ProblemData.Dataset.GetDoubleValues(ProblemData.TargetVariable, ProblemData.TrainingIndices).ToList();
100        var mean = targetValues.Average();
101        var range = targetValues.Max() - targetValues.Min();
102        EstimationLimits.Upper = mean + PunishmentFactor * range;
103        EstimationLimits.Lower = mean - PunishmentFactor * range;
104      } else {
105        EstimationLimits.Upper = double.MaxValue;
106        EstimationLimits.Lower = double.MinValue;
107      }
108    }
109
110    protected override void OnProblemDataChanged() {
111      base.OnProblemDataChanged();
112      UpdateEstimationLimits();
113    }
114
115    protected override void ParameterizeOperators() {
116      base.ParameterizeOperators();
117      if (Parameters.ContainsKey(EstimationLimitsParameterName)) {
118        var operators = Parameters.OfType<IValueParameter>().Select(p => p.Value).OfType<IOperator>().Union(Operators);
119        foreach (var op in operators.OfType<ISymbolicDataAnalysisBoundedOperator>()) {
120          op.EstimationLimitsParameter.ActualName = EstimationLimitsParameter.Name;
121        }
122      }
123    }
124  }
125}
Note: See TracBrowser for help on using the repository browser.