Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis/3.4/SingleObjective/SymbolicTimeSeriesPrognosisSingleObjectiveProblem.cs @ 7989

Last change on this file since 7989 was 7989, checked in by mkommend, 12 years ago

#1081: Improved performance of time series prognosis.

File size: 5.8 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.Parameters;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis {
29  [Item("Symbolic Time-Series Prognosis Problem (single objective)", "Represents a single objective symbolic time-series prognosis problem.")]
30  [StorableClass]
31  [Creatable("Problems")]
32  public class SymbolicTimeSeriesPrognosisSingleObjectiveProblem : SymbolicDataAnalysisSingleObjectiveProblem<ITimeSeriesPrognosisProblemData, ISymbolicTimeSeriesPrognosisSingleObjectiveEvaluator, ISymbolicDataAnalysisSolutionCreator>, ITimeSeriesPrognosisProblem {
33    private const int InitialMaximumTreeDepth = 8;
34    private const int InitialMaximumTreeLength = 25;
35    private const string EstimationLimitsParameterName = "EstimationLimits";
36    private const string EstimationLimitsParameterDescription = "The limits for the estimated value that can be returned by the symbolic regression model.";
37
38    #region parameter properties
39    public IFixedValueParameter<DoubleLimit> EstimationLimitsParameter {
40      get { return (IFixedValueParameter<DoubleLimit>)Parameters[EstimationLimitsParameterName]; }
41    }
42    #endregion
43    #region properties
44    public DoubleLimit EstimationLimits {
45      get { return EstimationLimitsParameter.Value; }
46    }
47    #endregion
48    [StorableConstructor]
49    protected SymbolicTimeSeriesPrognosisSingleObjectiveProblem(bool deserializing) : base(deserializing) { }
50    protected SymbolicTimeSeriesPrognosisSingleObjectiveProblem(SymbolicTimeSeriesPrognosisSingleObjectiveProblem original, Cloner cloner) : base(original, cloner) { }
51    public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicTimeSeriesPrognosisSingleObjectiveProblem(this, cloner); }
52
53    public SymbolicTimeSeriesPrognosisSingleObjectiveProblem()
54      : base(new TimeSeriesPrognosisProblemData(), new SymbolicTimeSeriesPrognosisSingleObjectiveMeanSquaredErrorEvaluator(), new SymbolicDataAnalysisExpressionTreeCreator()) {
55      Parameters.Add(new FixedValueParameter<DoubleLimit>(EstimationLimitsParameterName, EstimationLimitsParameterDescription));
56      EstimationLimitsParameter.Hidden = true;
57
58      Maximization.Value = false;
59      MaximumSymbolicExpressionTreeDepth.Value = InitialMaximumTreeDepth;
60      MaximumSymbolicExpressionTreeLength.Value = InitialMaximumTreeLength;
61
62      var interpeter = new SymbolicTimeSeriesPrognosisExpressionTreeInterpreter();
63      interpeter.TargetVariable = ProblemData.TargetVariable;
64      SymbolicExpressionTreeInterpreter = interpeter;
65
66      SymbolicExpressionTreeGrammarParameter.ValueChanged += (o, e) => ConfigureGrammarSymbols();
67      ConfigureGrammarSymbols();
68
69      InitializeOperators();
70      UpdateEstimationLimits();
71    }
72
73    private void ConfigureGrammarSymbols() {
74      var grammar = SymbolicExpressionTreeGrammar as TypeCoherentExpressionGrammar;
75      if (grammar != null) grammar.ConfigureAsDefaultTimeSeriesPrognosisGrammar();
76    }
77
78    private void InitializeOperators() {
79      Operators.Add(new SymbolicTimeSeriesPrognosisSingleObjectiveTrainingBestSolutionAnalyzer());
80      Operators.Add(new SymbolicTimeSeriesPrognosisSingleObjectiveValidationBestSolutionAnalyzer());
81      Operators.Add(new SymbolicTimeSeriesPrognosisSingleObjectiveOverfittingAnalyzer());
82      ParameterizeOperators();
83    }
84
85    private void UpdateEstimationLimits() {
86      EstimationLimits.Upper = double.MaxValue;
87      EstimationLimits.Lower = double.MinValue;
88    }
89
90    protected override void OnProblemDataChanged() {
91      base.OnProblemDataChanged();
92      var interpreter = SymbolicExpressionTreeInterpreter as ISymbolicTimeSeriesPrognosisExpressionTreeInterpreter;
93      if (interpreter != null) {
94        interpreter.TargetVariable = ProblemData.TargetVariable;
95      }
96      UpdateEstimationLimits();
97
98    }
99
100    protected override void ParameterizeOperators() {
101      base.ParameterizeOperators();
102      if (Parameters.ContainsKey(EstimationLimitsParameterName)) {
103        var operators = Parameters.OfType<IValueParameter>().Select(p => p.Value).OfType<IOperator>().Union(Operators);
104        foreach (var op in operators.OfType<ISymbolicDataAnalysisBoundedOperator>()) {
105          op.EstimationLimitsParameter.ActualName = EstimationLimitsParameter.Name;
106        }
107        foreach (var op in operators.OfType<SymbolicTimeSeriesPrognosisSingleObjectiveTrainingBestSolutionAnalyzer>()) {
108          op.MaximizationParameter.ActualName = MaximizationParameter.Name;
109          op.ProblemDataParameter.ActualName = ProblemDataParameter.Name;
110          op.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
111          op.SymbolicDataAnalysisTreeInterpreterParameter.ActualName = SymbolicExpressionTreeInterpreterParameter.Name;
112          op.SymbolicExpressionTreeParameter.ActualName = SolutionCreator.SymbolicExpressionTreeParameter.ActualName;
113        }
114      }
115    }
116  }
117}
Note: See TracBrowser for help on using the repository browser.