Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/MultiObjective/SymbolicRegressionMultiObjectiveProblem.cs @ 6120

Last change on this file since 6120 was 5854, checked in by mkommend, 13 years ago

#1418: Hid additional parameters of symbolic datanalysis problem.

File size: 4.9 KB
RevLine 
[5618]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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;
[5716]26using HeuristicLab.Parameters;
[5618]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")]
[5733]33  public class SymbolicRegressionMultiObjectiveProblem : SymbolicDataAnalysisMultiObjectiveProblem<IRegressionProblemData, ISymbolicRegressionMultiObjectiveEvaluator, 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 lower and upper limit for the estimated value that can be returned by the symbolic regression model.";
[5618]39
[5685]40    #region parameter properties
[5770]41    public IFixedValueParameter<DoubleLimit> EstimationLimitsParameter {
42      get { return (IFixedValueParameter<DoubleLimit>)Parameters[EstimationLimitsParameterName]; }
[5685]43    }
44    #endregion
[5770]45
[5685]46    #region properties
[5770]47    public DoubleLimit EstimationLimits {
48      get { return EstimationLimitsParameter.Value; }
[5685]49    }
[5770]50
[5685]51    #endregion
[5770]52
[5618]53    [StorableConstructor]
54    protected SymbolicRegressionMultiObjectiveProblem(bool deserializing) : base(deserializing) { }
55    protected SymbolicRegressionMultiObjectiveProblem(SymbolicRegressionMultiObjectiveProblem original, Cloner cloner) : base(original, cloner) { }
56    public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicRegressionMultiObjectiveProblem(this, cloner); }
57
58    public SymbolicRegressionMultiObjectiveProblem()
59      : base(new RegressionProblemData(), new SymbolicRegressionMultiObjectivePearsonRSquaredTreeSizeEvaluator(), new SymbolicDataAnalysisExpressionTreeCreator()) {
[5847]60      Parameters.Add(new FixedValueParameter<DoubleLimit>(EstimationLimitsParameterName, EstimationLimitsParameterDescription));
[5685]61
[5854]62      EstimationLimitsParameter.Hidden = true;
63
[5742]64      Maximization = new BoolArray(new bool[] { true, false });
[5685]65      MaximumSymbolicExpressionTreeDepth.Value = InitialMaximumTreeDepth;
66      MaximumSymbolicExpressionTreeLength.Value = InitialMaximumTreeLength;
67
68      InitializeOperators();
[5716]69      UpdateEstimationLimits();
[5618]70    }
71
[5685]72    private void InitializeOperators() {
73      Operators.Add(new SymbolicRegressionMultiObjectiveTrainingBestSolutionAnalyzer());
74      Operators.Add(new SymbolicRegressionMultiObjectiveValidationBestSolutionAnalyzer());
75      ParameterizeOperators();
76    }
77
78    private void UpdateEstimationLimits() {
[5759]79      if (ProblemData.TrainingPartition.Start < ProblemData.TrainingPartition.End) {
80        var targetValues = ProblemData.Dataset.GetVariableValues(ProblemData.TargetVariable, ProblemData.TrainingPartition.Start, ProblemData.TrainingPartition.End);
[5618]81        var mean = targetValues.Average();
82        var range = targetValues.Max() - targetValues.Min();
[5770]83        EstimationLimits.Upper = mean + PunishmentFactor * range;
84        EstimationLimits.Lower = mean - PunishmentFactor * range;
[5618]85      }
86    }
[5623]87
[5685]88    protected override void OnProblemDataChanged() {
89      base.OnProblemDataChanged();
90      UpdateEstimationLimits();
91    }
92
93    protected override void ParameterizeOperators() {
94      base.ParameterizeOperators();
[5770]95      if (Parameters.ContainsKey(EstimationLimitsParameterName)) {
96        var operators = Parameters.OfType<IValueParameter>().Select(p => p.Value).OfType<IOperator>().Union(Operators);
97        foreach (var op in operators.OfType<ISymbolicDataAnalysisBoundedOperator>()) {
98          op.EstimationLimitsParameter.ActualName = EstimationLimitsParameter.Name;
99        }
[5685]100      }
101    }
102
[5623]103    public override void ImportProblemDataFromFile(string fileName) {
104      RegressionProblemData problemData = RegressionProblemData.ImportFromFile(fileName);
105      ProblemData = problemData;
106    }
[5618]107  }
108}
Note: See TracBrowser for help on using the repository browser.