[5618] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 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 |
|
---|
| 22 | using System.Linq;
|
---|
| 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
[5716] | 25 | using HeuristicLab.Parameters;
|
---|
[5618] | 26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
|
---|
| 29 | [Item("Symbolic Regression Problem (single objective)", "Represents a single objective symbolic regression problem.")]
|
---|
| 30 | [StorableClass]
|
---|
| 31 | [Creatable("Problems")]
|
---|
[5759] | 32 | public class SymbolicRegressionSingleObjectiveProblem : SymbolicDataAnalysisSingleObjectiveProblem<IRegressionProblemData, ISymbolicRegressionSingleObjectiveEvaluator, ISymbolicDataAnalysisSolutionCreator>, IRegressionProblem {
|
---|
[5618] | 33 | private const double PunishmentFactor = 10;
|
---|
[5685] | 34 | private const int InitialMaximumTreeDepth = 8;
|
---|
| 35 | private const int InitialMaximumTreeLength = 25;
|
---|
[5770] | 36 | private const string EstimationLimitsParameterName = "EstimationLimits";
|
---|
| 37 | private const string EstimationLimitsParameterDescription = "The limits for the estimated value that can be returned by the symbolic regression model.";
|
---|
[5716] | 38 |
|
---|
[5685] | 39 | #region parameter properties
|
---|
[5770] | 40 | public IFixedValueParameter<DoubleLimit> EstimationLimitsParameter {
|
---|
| 41 | get { return (IFixedValueParameter<DoubleLimit>)Parameters[EstimationLimitsParameterName]; }
|
---|
[5685] | 42 | }
|
---|
| 43 | #endregion
|
---|
| 44 | #region properties
|
---|
[5770] | 45 | public DoubleLimit EstimationLimits {
|
---|
| 46 | get { return EstimationLimitsParameter.Value; }
|
---|
[5685] | 47 | }
|
---|
| 48 | #endregion
|
---|
[5618] | 49 | [StorableConstructor]
|
---|
| 50 | protected SymbolicRegressionSingleObjectiveProblem(bool deserializing) : base(deserializing) { }
|
---|
| 51 | protected SymbolicRegressionSingleObjectiveProblem(SymbolicRegressionSingleObjectiveProblem original, Cloner cloner) : base(original, cloner) { }
|
---|
| 52 | public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicRegressionSingleObjectiveProblem(this, cloner); }
|
---|
| 53 |
|
---|
| 54 | public SymbolicRegressionSingleObjectiveProblem()
|
---|
| 55 | : base(new RegressionProblemData(), new SymbolicRegressionSingleObjectivePearsonRSquaredEvaluator(), new SymbolicDataAnalysisExpressionTreeCreator()) {
|
---|
[5847] | 56 | Parameters.Add(new FixedValueParameter<DoubleLimit>(EstimationLimitsParameterName, EstimationLimitsParameterDescription));
|
---|
[5685] | 57 |
|
---|
[5854] | 58 | EstimationLimitsParameter.Hidden = true;
|
---|
| 59 |
|
---|
[5618] | 60 | Maximization.Value = true;
|
---|
[5685] | 61 | MaximumSymbolicExpressionTreeDepth.Value = InitialMaximumTreeDepth;
|
---|
| 62 | MaximumSymbolicExpressionTreeLength.Value = InitialMaximumTreeLength;
|
---|
| 63 |
|
---|
[6803] | 64 | SymbolicExpressionTreeGrammarParameter.ValueChanged += (o, e) => ConfigureGrammarSymbols();
|
---|
| 65 |
|
---|
| 66 | ConfigureGrammarSymbols();
|
---|
[5685] | 67 | InitializeOperators();
|
---|
[5716] | 68 | UpdateEstimationLimits();
|
---|
[5618] | 69 | }
|
---|
| 70 |
|
---|
[6803] | 71 | private void ConfigureGrammarSymbols() {
|
---|
| 72 | var grammar = SymbolicExpressionTreeGrammar as TypeCoherentExpressionGrammar;
|
---|
| 73 | if (grammar != null) grammar.ConfigureAsDefaultRegressionGrammar();
|
---|
| 74 | }
|
---|
| 75 |
|
---|
[5685] | 76 | private void InitializeOperators() {
|
---|
| 77 | Operators.Add(new SymbolicRegressionSingleObjectiveTrainingBestSolutionAnalyzer());
|
---|
| 78 | Operators.Add(new SymbolicRegressionSingleObjectiveValidationBestSolutionAnalyzer());
|
---|
[5747] | 79 | Operators.Add(new SymbolicRegressionSingleObjectiveOverfittingAnalyzer());
|
---|
[7726] | 80 | Operators.Add(new SymbolicRegressionSingleObjectiveTrainingParetoBestSolutionAnalyzer());
|
---|
[7734] | 81 | Operators.Add(new SymbolicRegressionSingleObjectiveValidationParetoBestSolutionAnalyzer());
|
---|
[7726] | 82 |
|
---|
[5685] | 83 | ParameterizeOperators();
|
---|
| 84 | }
|
---|
[5716] | 85 |
|
---|
[5685] | 86 | private void UpdateEstimationLimits() {
|
---|
[6754] | 87 | if (ProblemData.TrainingIndizes.Any()) {
|
---|
[6740] | 88 | var targetValues = ProblemData.Dataset.GetDoubleValues(ProblemData.TargetVariable, ProblemData.TrainingIndizes).ToList();
|
---|
[5618] | 89 | var mean = targetValues.Average();
|
---|
| 90 | var range = targetValues.Max() - targetValues.Min();
|
---|
[5770] | 91 | EstimationLimits.Upper = mean + PunishmentFactor * range;
|
---|
| 92 | EstimationLimits.Lower = mean - PunishmentFactor * range;
|
---|
[6754] | 93 | } else {
|
---|
| 94 | EstimationLimits.Upper = double.MaxValue;
|
---|
| 95 | EstimationLimits.Lower = double.MinValue;
|
---|
[5618] | 96 | }
|
---|
| 97 | }
|
---|
[5623] | 98 |
|
---|
[5685] | 99 | protected override void OnProblemDataChanged() {
|
---|
| 100 | base.OnProblemDataChanged();
|
---|
| 101 | UpdateEstimationLimits();
|
---|
| 102 | }
|
---|
| 103 |
|
---|
| 104 | protected override void ParameterizeOperators() {
|
---|
| 105 | base.ParameterizeOperators();
|
---|
[5770] | 106 | if (Parameters.ContainsKey(EstimationLimitsParameterName)) {
|
---|
| 107 | var operators = Parameters.OfType<IValueParameter>().Select(p => p.Value).OfType<IOperator>().Union(Operators);
|
---|
| 108 | foreach (var op in operators.OfType<ISymbolicDataAnalysisBoundedOperator>()) {
|
---|
| 109 | op.EstimationLimitsParameter.ActualName = EstimationLimitsParameter.Name;
|
---|
| 110 | }
|
---|
[5685] | 111 | }
|
---|
| 112 | }
|
---|
[5618] | 113 | }
|
---|
| 114 | }
|
---|