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