Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective/SymbolicClassificationSingleObjectiveProblem.cs @ 7770

Last change on this file since 7770 was 7770, checked in by sforsten, 12 years ago

#1784:

  • added some regions for readability
  • added import and export methods in DataAnalysisProblem and SymbolicDataAnalysisProblem to reduce code duplication
  • added a recursive and an iterative approach without many linq expression to generate all combinations of list elements in ValueGenerator
File size: 6.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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
21using System.Linq;
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Parameters;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26using HeuristicLab.Problems.Instances;
27
28namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Classification {
29  [Item("Symbolic Classification Problem (single objective)", "Represents a single objective symbolic classfication problem.")]
30  [StorableClass]
31  [Creatable("Problems")]
32  public class SymbolicClassificationSingleObjectiveProblem : SymbolicDataAnalysisSingleObjectiveProblem<IClassificationProblemData, ISymbolicClassificationSingleObjectiveEvaluator, ISymbolicDataAnalysisSolutionCreator>, IClassificationProblem,
33    IProblemInstanceConsumer<ClassificationProblemData>, IProblemInstanceExporter<ClassificationProblemData> {
34    private const double PunishmentFactor = 10;
35    private const int InitialMaximumTreeDepth = 8;
36    private const int InitialMaximumTreeLength = 25;
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 classification model.";
39
40    #region parameter properties
41    public IFixedValueParameter<DoubleLimit> EstimationLimitsParameter {
42      get { return (IFixedValueParameter<DoubleLimit>)Parameters[EstimationLimitsParameterName]; }
43    }
44    #endregion
45    #region properties
46    public DoubleLimit EstimationLimits {
47      get { return EstimationLimitsParameter.Value; }
48    }
49    #endregion
50    [StorableConstructor]
51    protected SymbolicClassificationSingleObjectiveProblem(bool deserializing) : base(deserializing) { }
52    protected SymbolicClassificationSingleObjectiveProblem(SymbolicClassificationSingleObjectiveProblem original, Cloner cloner) : base(original, cloner) { }
53    public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicClassificationSingleObjectiveProblem(this, cloner); }
54
55    public SymbolicClassificationSingleObjectiveProblem()
56      : base(new ClassificationProblemData(), new SymbolicClassificationSingleObjectiveMeanSquaredErrorEvaluator(), new SymbolicDataAnalysisExpressionTreeCreator()) {
57      Parameters.Add(new FixedValueParameter<DoubleLimit>(EstimationLimitsParameterName, EstimationLimitsParameterDescription));
58
59      EstimationLimitsParameter.Hidden = true;
60
61      MaximumSymbolicExpressionTreeDepth.Value = InitialMaximumTreeDepth;
62      MaximumSymbolicExpressionTreeLength.Value = InitialMaximumTreeLength;
63
64      SymbolicExpressionTreeGrammarParameter.ValueChanged += (o, e) => ConfigureGrammarSymbols();
65
66      ConfigureGrammarSymbols();
67      InitializeOperators();
68      UpdateEstimationLimits();
69    }
70
71    private void ConfigureGrammarSymbols() {
72      var grammar = SymbolicExpressionTreeGrammar as TypeCoherentExpressionGrammar;
73      if (grammar != null) grammar.ConfigureAsDefaultClassificationGrammar();
74    }
75
76    private void InitializeOperators() {
77      Operators.Add(new SymbolicClassificationSingleObjectiveTrainingBestSolutionAnalyzer());
78      Operators.Add(new SymbolicClassificationSingleObjectiveValidationBestSolutionAnalyzer());
79      Operators.Add(new SymbolicClassificationSingleObjectiveOverfittingAnalyzer());
80      Operators.Add(new SymbolicClassificationSingleObjectiveTrainingParetoBestSolutionAnalyzer());
81      Operators.Add(new SymbolicClassificationSingleObjectiveValidationParetoBestSolutionAnalyzer());
82      ParameterizeOperators();
83    }
84
85    private void UpdateEstimationLimits() {
86      if (ProblemData.TrainingIndizes.Any()) {
87        var targetValues = ProblemData.Dataset.GetDoubleValues(ProblemData.TargetVariable, ProblemData.TrainingIndizes).ToList();
88        var mean = targetValues.Average();
89        var range = targetValues.Max() - targetValues.Min();
90        EstimationLimits.Upper = mean + PunishmentFactor * range;
91        EstimationLimits.Lower = mean - PunishmentFactor * range;
92      } else {
93        EstimationLimits.Upper = double.MaxValue;
94        EstimationLimits.Lower = double.MinValue;
95      }
96    }
97
98    protected override void OnProblemDataChanged() {
99      base.OnProblemDataChanged();
100      UpdateEstimationLimits();
101    }
102
103    protected override void ParameterizeOperators() {
104      base.ParameterizeOperators();
105      if (Parameters.ContainsKey(EstimationLimitsParameterName)) {
106        var operators = Parameters.OfType<IValueParameter>().Select(p => p.Value).OfType<IOperator>().Union(Operators);
107        foreach (var op in operators.OfType<ISymbolicDataAnalysisBoundedOperator>()) {
108          op.EstimationLimitsParameter.ActualName = EstimationLimitsParameter.Name;
109        }
110      }
111    }
112
113    #region Import & Export
114    public void Load(ClassificationProblemData data) {
115      base.Load(data);
116    }
117
118    public ClassificationProblemData Export() {
119      if (ProblemData is ClassificationProblemData) {
120        return (ClassificationProblemData)ProblemData;
121      } else {
122        ClassificationProblemData claData = new ClassificationProblemData(ProblemData.Dataset, ProblemData.AllowedInputVariables, ProblemData.TargetVariable);
123        return (ClassificationProblemData)base.Export(claData);
124      }
125    }
126    #endregion
127  }
128}
Note: See TracBrowser for help on using the repository browser.