Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SymbolicClassificationPruningOperator.cs @ 18132

Last change on this file since 18132 was 18132, checked in by gkronber, 2 years ago

#3140: merged r18091:18131 from branch to trunk

File size: 6.3 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
5 *
6 * This file is part of HeuristicLab.
7 *
8 * HeuristicLab is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * HeuristicLab is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#endregion
23
24using System.Collections.Generic;
25using System.Linq;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
29using HeuristicLab.Parameters;
30using HEAL.Attic;
31
32namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Classification {
33  [StorableType("F213025F-ACE7-4E43-A149-70C3AD824D19")]
34  [Item("SymbolicClassificationPruningOperator", "An operator which prunes symbolic classificaton trees.")]
35  public class SymbolicClassificationPruningOperator : SymbolicDataAnalysisExpressionPruningOperator {
36    private const string ModelCreatorParameterName = "ModelCreator";
37    private const string EvaluatorParameterName = "Evaluator";
38
39    #region parameter properties
40    public ILookupParameter<ISymbolicClassificationModelCreator> ModelCreatorParameter {
41      get { return (ILookupParameter<ISymbolicClassificationModelCreator>)Parameters[ModelCreatorParameterName]; }
42    }
43
44    public ILookupParameter<ISymbolicClassificationSingleObjectiveEvaluator> EvaluatorParameter {
45      get {
46        return (ILookupParameter<ISymbolicClassificationSingleObjectiveEvaluator>)Parameters[EvaluatorParameterName];
47      }
48    }
49    #endregion
50
51    protected SymbolicClassificationPruningOperator(SymbolicClassificationPruningOperator original, Cloner cloner) : base(original, cloner) { }
52    public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicClassificationPruningOperator(this, cloner); }
53
54    [StorableConstructor]
55    protected SymbolicClassificationPruningOperator(StorableConstructorFlag _) : base(_) { }
56
57    public SymbolicClassificationPruningOperator(ISymbolicDataAnalysisSolutionImpactValuesCalculator impactValuesCalculator)
58      : base(impactValuesCalculator) {
59      Parameters.Add(new LookupParameter<ISymbolicClassificationModelCreator>(ModelCreatorParameterName));
60      Parameters.Add(new LookupParameter<ISymbolicClassificationSingleObjectiveEvaluator>(EvaluatorParameterName));
61    }
62
63    [StorableHook(HookType.AfterDeserialization)]
64    private void AfterDeserialization() {
65      // BackwardsCompatibility3.3
66      #region Backwards compatible code, remove with 3.4
67      base.ImpactValuesCalculator = new SymbolicClassificationSolutionImpactValuesCalculator();
68      if (!Parameters.ContainsKey(EvaluatorParameterName)) {
69        Parameters.Add(new LookupParameter<ISymbolicClassificationSingleObjectiveEvaluator>(EvaluatorParameterName));
70      }
71      #endregion
72    }
73
74    protected override ISymbolicDataAnalysisModel CreateModel(ISymbolicExpressionTree tree, ISymbolicDataAnalysisExpressionTreeInterpreter interpreter, IDataAnalysisProblemData problemData, DoubleLimit estimationLimits) {
75      var classificationProblemData = (IClassificationProblemData)problemData;
76      var model = ModelCreatorParameter.ActualValue.CreateSymbolicClassificationModel(classificationProblemData.TargetVariable, tree, interpreter, estimationLimits.Lower, estimationLimits.Upper);
77
78      var rows = classificationProblemData.TrainingIndices;
79      model.RecalculateModelParameters(classificationProblemData, rows);
80      return model;
81    }
82
83    protected override double Evaluate(IDataAnalysisModel model) {
84      var evaluator = EvaluatorParameter.ActualValue;
85      var classificationModel = (ISymbolicClassificationModel)model;
86      var classificationProblemData = (IClassificationProblemData)ProblemDataParameter.ActualValue;
87      var rows = Enumerable.Range(FitnessCalculationPartitionParameter.ActualValue.Start, FitnessCalculationPartitionParameter.ActualValue.Size);
88      return evaluator.Evaluate(this.ExecutionContext, classificationModel.SymbolicExpressionTree, classificationProblemData, rows);
89    }
90
91    public static ISymbolicExpressionTree Prune(ISymbolicExpressionTree tree, ISymbolicClassificationModelCreator modelCreator,
92      SymbolicClassificationSolutionImpactValuesCalculator impactValuesCalculator, ISymbolicDataAnalysisExpressionTreeInterpreter interpreter,
93      IClassificationProblemData problemData, DoubleLimit estimationLimits, IEnumerable<int> rows,
94      double nodeImpactThreshold = 0.0, bool pruneOnlyZeroImpactNodes = false) {
95      var clonedTree = (ISymbolicExpressionTree)tree.Clone();
96      var model = modelCreator.CreateSymbolicClassificationModel(problemData.TargetVariable, clonedTree, interpreter, estimationLimits.Lower, estimationLimits.Upper);
97
98      var nodes = clonedTree.Root.GetSubtree(0).GetSubtree(0).IterateNodesPrefix().ToList();
99      double qualityForImpactsCalculation = double.NaN;
100
101      for (int i = 0; i < nodes.Count; ++i) {
102        var node = nodes[i];
103        if (node is INumericTreeNode) continue;
104
105        impactValuesCalculator.CalculateImpactAndReplacementValues(model, node, problemData, rows,
106          out double impactValue, out double replacementValue, out double newQualityForImpactsCalculation, qualityForImpactsCalculation);
107
108        if (pruneOnlyZeroImpactNodes && !impactValue.IsAlmost(0.0)) continue;
109        if (!pruneOnlyZeroImpactNodes && impactValue > nodeImpactThreshold) continue;
110
111        var numberNode = (NumberTreeNode)node.Grammar.GetSymbol("Number").CreateTreeNode();
112        numberNode.Value = replacementValue;
113
114        ReplaceWithNumber(node, numberNode);
115        i += node.GetLength() - 1; // skip subtrees under the node that was folded
116
117        qualityForImpactsCalculation = newQualityForImpactsCalculation;
118      }
119      return model.SymbolicExpressionTree;
120    }
121  }
122}
Note: See TracBrowser for help on using the repository browser.