Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/MultiObjective/SymbolicRegressionMultiObjectiveProblem.cs @ 5722

Last change on this file since 5722 was 5722, checked in by gkronber, 13 years ago

#1418 fixed evaluator call from validation analyzers, fixed bugs in interactive simplifier view and added apply linear scaling flag to analyzers.

File size: 5.7 KB
Line 
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;
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> {
34    private const double PunishmentFactor = 10;
35    private const int InitialMaximumTreeDepth = 8;
36    private const int InitialMaximumTreeLength = 25;
37    private const string LowerEstimationLimitParameterName = "LowerEstimationLimit";
38    private const string UpperEstimationLimitParameterName = "UpperEstimationLimit";
39    private const string LowerEstimationLimitParameterDescription = "The lower limit for the estimated value that can be returned by the symbolic regression model.";
40    private const string UpperEstimationLimitParameterDescription = "The upper limit for the estimated value that can be returned by the symbolic regression model.";
41
42    #region parameter properties
43    public IFixedValueParameter<DoubleValue> LowerEstimationLimitParameter {
44      get { return (IFixedValueParameter<DoubleValue>)Parameters[LowerEstimationLimitParameterName]; }
45    }
46    public IFixedValueParameter<DoubleValue> UpperEstimationLimitParameter {
47      get { return (IFixedValueParameter<DoubleValue>)Parameters[UpperEstimationLimitParameterName]; }
48    }
49    #endregion
50    #region properties
51    public DoubleValue LowerEstimationLimit {
52      get { return LowerEstimationLimitParameter.Value; }
53    }
54    public DoubleValue UpperEstimationLimit {
55      get { return UpperEstimationLimitParameter.Value; }
56    }
57    #endregion
58    [StorableConstructor]
59    protected SymbolicRegressionMultiObjectiveProblem(bool deserializing) : base(deserializing) { }
60    protected SymbolicRegressionMultiObjectiveProblem(SymbolicRegressionMultiObjectiveProblem original, Cloner cloner) : base(original, cloner) { }
61    public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicRegressionMultiObjectiveProblem(this, cloner); }
62
63    public SymbolicRegressionMultiObjectiveProblem()
64      : base(new RegressionProblemData(), new SymbolicRegressionMultiObjectivePearsonRSquaredTreeSizeEvaluator(), new SymbolicDataAnalysisExpressionTreeCreator()) {
65      Parameters.Add(new FixedValueParameter<DoubleValue>(LowerEstimationLimitParameterName, LowerEstimationLimitParameterDescription, new DoubleValue()));
66      Parameters.Add(new FixedValueParameter<DoubleValue>(UpperEstimationLimitParameterName, UpperEstimationLimitParameterDescription, new DoubleValue()));
67
68      Maximization = new BoolArray(new bool[] { false, false });
69      MaximumSymbolicExpressionTreeDepth.Value = InitialMaximumTreeDepth;
70      MaximumSymbolicExpressionTreeLength.Value = InitialMaximumTreeLength;
71
72      InitializeOperators();
73      UpdateEstimationLimits();
74      UpdateDatasetPartitions();
75    }
76
77    private void InitializeOperators() {
78      Operators.Add(new SymbolicRegressionMultiObjectiveTrainingBestSolutionAnalyzer());
79      Operators.Add(new SymbolicRegressionMultiObjectiveValidationBestSolutionAnalyzer());
80      ParameterizeOperators();
81    }
82
83    private void UpdateEstimationLimits() {
84      if (ProblemData.TrainingPartitionStart.Value < ProblemData.TrainingPartitionEnd.Value) {
85        var targetValues = ProblemData.Dataset.GetVariableValues(ProblemData.TargetVariable, ProblemData.TrainingPartitionStart.Value, ProblemData.TrainingPartitionEnd.Value);
86        var mean = targetValues.Average();
87        var range = targetValues.Max() - targetValues.Min();
88        UpperEstimationLimit.Value = mean + PunishmentFactor * range;
89        LowerEstimationLimit.Value = mean - PunishmentFactor * range;
90      }
91    }
92
93    protected override void OnProblemDataChanged() {
94      base.OnProblemDataChanged();
95      UpdateEstimationLimits();
96    }
97
98    protected override void ParameterizeOperators() {
99      base.ParameterizeOperators();
100      var operators = Parameters.OfType<IValueParameter>().Select(p => p.Value).OfType<IOperator>().Union(Operators);
101      foreach (var op in operators.OfType<ISymbolicDataAnalysisBoundedOperator>()) {
102        op.LowerEstimationLimitParameter.ActualName = LowerEstimationLimitParameterName;
103        op.UpperEstimationLimitParameter.ActualName = UpperEstimationLimitParameterName;
104      }
105    }
106
107    public override void ImportProblemDataFromFile(string fileName) {
108      RegressionProblemData problemData = RegressionProblemData.ImportFromFile(fileName);
109      ProblemData = problemData;
110    }
111  }
112}
Note: See TracBrowser for help on using the repository browser.