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 | using System.Linq;
|
---|
22 | using HeuristicLab.Common;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Data;
|
---|
25 | using HeuristicLab.Parameters;
|
---|
26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Classification {
|
---|
29 | [Item("Symbolic Classification Problem (multi objective)", "Represents a multi objective symbolic classfication problem.")]
|
---|
30 | [StorableClass]
|
---|
31 | [Creatable("Problems")]
|
---|
32 | public class SymbolicClassificationMultiObjectiveProblem : SymbolicDataAnalysisMultiObjectiveProblem<IClassificationProblemData, ISymbolicClassificationMultiObjectiveEvaluator, ISymbolicDataAnalysisSolutionCreator>, IClassificationProblem {
|
---|
33 | private const double PunishmentFactor = 10;
|
---|
34 | private const int InitialMaximumTreeDepth = 8;
|
---|
35 | private const int InitialMaximumTreeLength = 25;
|
---|
36 | private const string EstimationLimitsParameterName = "EstimationLimits";
|
---|
37 | private const string EstimationLimitsParameterDescription = "The lower and upper limit for the estimated value that can be returned by the symbolic classification model.";
|
---|
38 |
|
---|
39 | #region parameter properties
|
---|
40 | public IFixedValueParameter<DoubleLimit> EstimationLimitsParameter {
|
---|
41 | get { return (IFixedValueParameter<DoubleLimit>)Parameters[EstimationLimitsParameterName]; }
|
---|
42 | }
|
---|
43 | #endregion
|
---|
44 | #region properties
|
---|
45 | public DoubleLimit EstimationLimits {
|
---|
46 | get { return EstimationLimitsParameter.Value; }
|
---|
47 | }
|
---|
48 | #endregion
|
---|
49 | [StorableConstructor]
|
---|
50 | protected SymbolicClassificationMultiObjectiveProblem(bool deserializing) : base(deserializing) { }
|
---|
51 | protected SymbolicClassificationMultiObjectiveProblem(SymbolicClassificationMultiObjectiveProblem original, Cloner cloner) : base(original, cloner) { }
|
---|
52 | public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicClassificationMultiObjectiveProblem(this, cloner); }
|
---|
53 |
|
---|
54 | public SymbolicClassificationMultiObjectiveProblem()
|
---|
55 | : base(new ClassificationProblemData(), new SymbolicClassificationMultiObjectiveMeanSquaredErrorTreeSizeEvaluator(), new SymbolicDataAnalysisExpressionTreeCreator()) {
|
---|
56 | Parameters.Add(new FixedValueParameter<DoubleLimit>(EstimationLimitsParameterName, EstimationLimitsParameterDescription));
|
---|
57 |
|
---|
58 | EstimationLimitsParameter.Hidden = true;
|
---|
59 |
|
---|
60 | Maximization = new BoolArray(new bool[] { false, false });
|
---|
61 | MaximumSymbolicExpressionTreeDepth.Value = InitialMaximumTreeDepth;
|
---|
62 | MaximumSymbolicExpressionTreeLength.Value = InitialMaximumTreeLength;
|
---|
63 |
|
---|
64 | InitializeOperators();
|
---|
65 | UpdateEstimationLimits();
|
---|
66 | }
|
---|
67 |
|
---|
68 | private void InitializeOperators() {
|
---|
69 | Operators.Add(new SymbolicClassificationMultiObjectiveTrainingBestSolutionAnalyzer());
|
---|
70 | Operators.Add(new SymbolicClassificationMultiObjectiveValidationBestSolutionAnalyzer());
|
---|
71 | ParameterizeOperators();
|
---|
72 | }
|
---|
73 |
|
---|
74 | private void UpdateEstimationLimits() {
|
---|
75 | if (ProblemData.TrainingIndizes.Any()) {
|
---|
76 | var targetValues = ProblemData.Dataset.GetDoubleValues(ProblemData.TargetVariable, ProblemData.TrainingIndizes).ToList();
|
---|
77 | var mean = targetValues.Average();
|
---|
78 | var range = targetValues.Max() - targetValues.Min();
|
---|
79 | EstimationLimits.Upper = mean + PunishmentFactor * range;
|
---|
80 | EstimationLimits.Lower = mean - PunishmentFactor * range;
|
---|
81 | } else {
|
---|
82 | EstimationLimits.Upper = double.MaxValue;
|
---|
83 | EstimationLimits.Lower = double.MinValue;
|
---|
84 | }
|
---|
85 | }
|
---|
86 |
|
---|
87 | protected override void OnProblemDataChanged() {
|
---|
88 | base.OnProblemDataChanged();
|
---|
89 | UpdateEstimationLimits();
|
---|
90 | }
|
---|
91 |
|
---|
92 | protected new void ParameterizeOperators() {
|
---|
93 | base.ParameterizeOperators();
|
---|
94 | if (Parameters.ContainsKey(EstimationLimitsParameterName)) {
|
---|
95 | var operators = Parameters.OfType<IValueParameter>().Select(p => p.Value).OfType<IOperator>().Union(Operators);
|
---|
96 | foreach (var op in operators.OfType<ISymbolicDataAnalysisBoundedOperator>()) {
|
---|
97 | op.EstimationLimitsParameter.ActualName = EstimationLimitsParameterName;
|
---|
98 | }
|
---|
99 | }
|
---|
100 | }
|
---|
101 |
|
---|
102 | public override void ImportProblemDataFromFile(string fileName) {
|
---|
103 | ClassificationProblemData problemData = ClassificationProblemData.ImportFromFile(fileName);
|
---|
104 | ProblemData = problemData;
|
---|
105 | }
|
---|
106 | }
|
---|
107 | }
|
---|