Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/SymbolicRegressionSingleObjectiveProblem.cs @ 17903

Last change on this file since 17903 was 17903, checked in by gkronber, 3 years ago

#3076: merged reintegration branch to trunk

File size: 7.6 KB
RevLine 
[5618]1#region License Information
2/* HeuristicLab
[17180]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[5618]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;
[12103]25using HeuristicLab.Optimization;
[5716]26using HeuristicLab.Parameters;
[16565]27using HEAL.Attic;
[5618]28
29namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
[12504]30  [Item("Symbolic Regression Problem (single-objective)", "Represents a single objective symbolic regression problem.")]
[16565]31  [StorableType("7DDCF683-96FC-4F70-BF4F-FE3A0B0DE6E0")]
[12504]32  [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 100)]
[5759]33  public class SymbolicRegressionSingleObjectiveProblem : SymbolicDataAnalysisSingleObjectiveProblem<IRegressionProblemData, ISymbolicRegressionSingleObjectiveEvaluator, ISymbolicDataAnalysisSolutionCreator>, IRegressionProblem {
[5618]34    private const double PunishmentFactor = 10;
[5685]35    private const int InitialMaximumTreeDepth = 8;
36    private const int InitialMaximumTreeLength = 25;
[5770]37    private const string EstimationLimitsParameterName = "EstimationLimits";
38    private const string EstimationLimitsParameterDescription = "The limits for the estimated value that can be returned by the symbolic regression model.";
[5716]39
[5685]40    #region parameter properties
[5770]41    public IFixedValueParameter<DoubleLimit> EstimationLimitsParameter {
42      get { return (IFixedValueParameter<DoubleLimit>)Parameters[EstimationLimitsParameterName]; }
[5685]43    }
44    #endregion
45    #region properties
[5770]46    public DoubleLimit EstimationLimits {
47      get { return EstimationLimitsParameter.Value; }
[5685]48    }
49    #endregion
[5618]50    [StorableConstructor]
[16565]51    protected SymbolicRegressionSingleObjectiveProblem(StorableConstructorFlag _) : base(_) { }
[8175]52    protected SymbolicRegressionSingleObjectiveProblem(SymbolicRegressionSingleObjectiveProblem original, Cloner cloner)
53      : base(original, cloner) {
54      RegisterEventHandlers();
55    }
[5618]56    public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicRegressionSingleObjectiveProblem(this, cloner); }
57
58    public SymbolicRegressionSingleObjectiveProblem()
59      : base(new RegressionProblemData(), new SymbolicRegressionSingleObjectivePearsonRSquaredEvaluator(), new SymbolicDataAnalysisExpressionTreeCreator()) {
[5847]60      Parameters.Add(new FixedValueParameter<DoubleLimit>(EstimationLimitsParameterName, EstimationLimitsParameterDescription));
[5685]61
[5854]62      EstimationLimitsParameter.Hidden = true;
63
[8664]64
65      ApplyLinearScalingParameter.Value.Value = true;
[5618]66      Maximization.Value = true;
[5685]67      MaximumSymbolicExpressionTreeDepth.Value = InitialMaximumTreeDepth;
68      MaximumSymbolicExpressionTreeLength.Value = InitialMaximumTreeLength;
69
[8175]70      RegisterEventHandlers();
[6803]71      ConfigureGrammarSymbols();
[5685]72      InitializeOperators();
[5716]73      UpdateEstimationLimits();
[5618]74    }
75
[8130]76    [StorableHook(HookType.AfterDeserialization)]
77    private void AfterDeserialization() {
[8175]78      RegisterEventHandlers();
[8130]79      // compatibility
80      bool changed = false;
81      if (!Operators.OfType<SymbolicRegressionSingleObjectiveTrainingParetoBestSolutionAnalyzer>().Any()) {
82        Operators.Add(new SymbolicRegressionSingleObjectiveTrainingParetoBestSolutionAnalyzer());
83        changed = true;
84      }
85      if (!Operators.OfType<SymbolicRegressionSingleObjectiveValidationParetoBestSolutionAnalyzer>().Any()) {
86        Operators.Add(new SymbolicRegressionSingleObjectiveValidationParetoBestSolutionAnalyzer());
87        changed = true;
88      }
[10596]89      if (!Operators.OfType<SymbolicRegressionSolutionsAnalyzer>().Any()) {
90        Operators.Add(new SymbolicRegressionSolutionsAnalyzer());
91        changed = true;
92      }
[17903]93
94      if (!Operators.OfType<ShapeConstraintsAnalyzer>().Any()) {
95        Operators.Add(new ShapeConstraintsAnalyzer());
96        changed = true;
97      }
[8130]98      if (changed) {
99        ParameterizeOperators();
100      }
101    }
102
[8175]103    private void RegisterEventHandlers() {
104      SymbolicExpressionTreeGrammarParameter.ValueChanged += (o, e) => ConfigureGrammarSymbols();
105    }
106
[6803]107    private void ConfigureGrammarSymbols() {
108      var grammar = SymbolicExpressionTreeGrammar as TypeCoherentExpressionGrammar;
109      if (grammar != null) grammar.ConfigureAsDefaultRegressionGrammar();
110    }
111
[5685]112    private void InitializeOperators() {
113      Operators.Add(new SymbolicRegressionSingleObjectiveTrainingBestSolutionAnalyzer());
114      Operators.Add(new SymbolicRegressionSingleObjectiveValidationBestSolutionAnalyzer());
[5747]115      Operators.Add(new SymbolicRegressionSingleObjectiveOverfittingAnalyzer());
[7726]116      Operators.Add(new SymbolicRegressionSingleObjectiveTrainingParetoBestSolutionAnalyzer());
[7734]117      Operators.Add(new SymbolicRegressionSingleObjectiveValidationParetoBestSolutionAnalyzer());
[10596]118      Operators.Add(new SymbolicRegressionSolutionsAnalyzer());
[12103]119      Operators.Add(new SymbolicExpressionTreePhenotypicSimilarityCalculator());
[17903]120      Operators.Add(new ShapeConstraintsAnalyzer());
[12103]121      Operators.Add(new SymbolicRegressionPhenotypicDiversityAnalyzer(Operators.OfType<SymbolicExpressionTreePhenotypicSimilarityCalculator>()) { DiversityResultName = "Phenotypic Diversity" });
[5685]122      ParameterizeOperators();
123    }
[5716]124
[5685]125    private void UpdateEstimationLimits() {
[8139]126      if (ProblemData.TrainingIndices.Any()) {
127        var targetValues = ProblemData.Dataset.GetDoubleValues(ProblemData.TargetVariable, ProblemData.TrainingIndices).ToList();
[5618]128        var mean = targetValues.Average();
129        var range = targetValues.Max() - targetValues.Min();
[5770]130        EstimationLimits.Upper = mean + PunishmentFactor * range;
131        EstimationLimits.Lower = mean - PunishmentFactor * range;
[6754]132      } else {
133        EstimationLimits.Upper = double.MaxValue;
134        EstimationLimits.Lower = double.MinValue;
[5618]135      }
136    }
[5623]137
[5685]138    protected override void OnProblemDataChanged() {
139      base.OnProblemDataChanged();
140      UpdateEstimationLimits();
141    }
142
143    protected override void ParameterizeOperators() {
144      base.ParameterizeOperators();
[5770]145      if (Parameters.ContainsKey(EstimationLimitsParameterName)) {
146        var operators = Parameters.OfType<IValueParameter>().Select(p => p.Value).OfType<IOperator>().Union(Operators);
147        foreach (var op in operators.OfType<ISymbolicDataAnalysisBoundedOperator>()) {
148          op.EstimationLimitsParameter.ActualName = EstimationLimitsParameter.Name;
149        }
[5685]150      }
[12103]151
152      foreach (var op in Operators.OfType<ISolutionSimilarityCalculator>()) {
153        op.SolutionVariableName = SolutionCreator.SymbolicExpressionTreeParameter.ActualName;
154        op.QualityVariableName = Evaluator.QualityParameter.ActualName;
155
156        if (op is SymbolicExpressionTreePhenotypicSimilarityCalculator) {
157          var phenotypicSimilarityCalculator = (SymbolicExpressionTreePhenotypicSimilarityCalculator)op;
158          phenotypicSimilarityCalculator.ProblemData = ProblemData;
159          phenotypicSimilarityCalculator.Interpreter = SymbolicExpressionTreeInterpreter;
160        }
161      }
[5685]162    }
[5618]163  }
164}
Note: See TracBrowser for help on using the repository browser.