Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SymbolicRegressionPruningOperator.cs @ 12720

Last change on this file since 12720 was 12720, checked in by bburlacu, 9 years ago

#2359: Changed the impact calculators so that the quality value necessary for impacts calculation is calculated with a separate method. Refactored the CalculateImpactAndReplacementValues method to return the new quality in an out-parameter (adjusted method signature in interface accordingly). Added Evaluate method to the regression and classification pruning operators that re-evaluates the tree using the problem evaluator after pruning was performed.

File size: 5.2 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) 2002-2015 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 HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
32namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
33  [StorableClass]
34  [Item("SymbolicRegressionPruningOperator", "An operator which prunes symbolic regression trees.")]
35  public class SymbolicRegressionPruningOperator : SymbolicDataAnalysisExpressionPruningOperator {
36    private const string EvaluatorParameterName = "Evaluator";
37
38    #region parameter properties
39    public ILookupParameter<ISymbolicRegressionSingleObjectiveEvaluator> EvaluatorParameter {
40      get { return (ILookupParameter<ISymbolicRegressionSingleObjectiveEvaluator>)Parameters[EvaluatorParameterName]; }
41    }
42    #endregion
43
44    protected SymbolicRegressionPruningOperator(SymbolicRegressionPruningOperator original, Cloner cloner)
45      : base(original, cloner) {
46    }
47    public override IDeepCloneable Clone(Cloner cloner) {
48      return new SymbolicRegressionPruningOperator(this, cloner);
49    }
50
51    [StorableConstructor]
52    protected SymbolicRegressionPruningOperator(bool deserializing) : base(deserializing) { }
53
54    public SymbolicRegressionPruningOperator(ISymbolicDataAnalysisSolutionImpactValuesCalculator impactValuesCalculator)
55      : base(impactValuesCalculator) {
56      Parameters.Add(new LookupParameter<ISymbolicRegressionSingleObjectiveEvaluator>(EvaluatorParameterName));
57    }
58
59    protected override ISymbolicDataAnalysisModel CreateModel(ISymbolicExpressionTree tree, ISymbolicDataAnalysisExpressionTreeInterpreter interpreter, IDataAnalysisProblemData problemData, DoubleLimit estimationLimits) {
60      return new SymbolicRegressionModel(tree, interpreter, estimationLimits.Lower, estimationLimits.Upper);
61    }
62
63    protected override double Evaluate(IDataAnalysisModel model) {
64      var regressionModel = (ISymbolicRegressionModel)model;
65      var regressionProblemData = (IRegressionProblemData)ProblemDataParameter.ActualValue;
66      var evaluator = EvaluatorParameter.ActualValue;
67      var fitnessEvaluationPartition = FitnessCalculationPartitionParameter.ActualValue;
68      var rows = Enumerable.Range(fitnessEvaluationPartition.Start, fitnessEvaluationPartition.Size);
69      return evaluator.Evaluate(this.ExecutionContext, regressionModel.SymbolicExpressionTree, regressionProblemData, rows);
70    }
71
72    public static ISymbolicExpressionTree Prune(ISymbolicExpressionTree tree, SymbolicRegressionSolutionImpactValuesCalculator impactValuesCalculator, ISymbolicDataAnalysisExpressionTreeInterpreter interpreter, IRegressionProblemData problemData, DoubleLimit estimationLimits, IEnumerable<int> rows, double nodeImpactThreshold = 0.0, bool pruneOnlyZeroImpactNodes = false) {
73      var clonedTree = (ISymbolicExpressionTree)tree.Clone();
74      var model = new SymbolicRegressionModel(clonedTree, interpreter, estimationLimits.Lower, estimationLimits.Upper);
75      var nodes = clonedTree.Root.GetSubtree(0).GetSubtree(0).IterateNodesPrefix().ToList(); // skip the nodes corresponding to the ProgramRootSymbol and the StartSymbol
76
77      double qualityForImpactsCalculation = double.NaN; // pass a NaN value initially so the impact calculator will calculate the quality
78
79      for (int i = 0; i < nodes.Count; ++i) {
80        var node = nodes[i];
81        if (node is ConstantTreeNode) continue;
82
83        double impactValue, replacementValue;
84        double newQualityForImpactsCalculation;
85        impactValuesCalculator.CalculateImpactAndReplacementValues(model, node, problemData, rows, out impactValue, out replacementValue, out newQualityForImpactsCalculation, qualityForImpactsCalculation);
86
87        if (pruneOnlyZeroImpactNodes && !impactValue.IsAlmost(0.0)) continue;
88        if (!pruneOnlyZeroImpactNodes && impactValue > nodeImpactThreshold) continue;
89
90        var constantNode = (ConstantTreeNode)node.Grammar.GetSymbol("Constant").CreateTreeNode();
91        constantNode.Value = replacementValue;
92
93        ReplaceWithConstant(node, constantNode);
94        i += node.GetLength() - 1; // skip subtrees under the node that was folded
95
96        qualityForImpactsCalculation = newQualityForImpactsCalculation;
97      }
98      return model.SymbolicExpressionTree;
99    }
100  }
101}
Note: See TracBrowser for help on using the repository browser.