Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/Evaluators/SymbolicRegressionSingleObjectiveConstraintPearsonRSquaredEvaluator.cs @ 17511

Last change on this file since 17511 was 17511, checked in by chaider, 4 years ago

#2971

  • Checked ConstraintSatisfied before calculating r2
  • Removed code duplications in SymbolicRegressionSingleObjectiveConstraintPearsonRSquaredEvaluator and SymbolicRegressionSingleObjectiveConstraintConstOptEvaluator
File size: 4.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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
22using System.Collections.Generic;
23using HEAL.Attic;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
28
29namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
30  [Item("Pearson R² Constraint Evaluator", "Calculates the square of the pearson correlation coefficient (also known as coefficient of determination) of a symbolic regression solution.")]
31  [StorableType("D61462E4-2032-4790-B63D-5E6512987F64")]
32  public class SymbolicRegressionSingleObjectiveConstraintPearsonRSquaredEvaluator : SymbolicRegressionSingleObjectiveEvaluator {
33    [StorableConstructor]
34    protected SymbolicRegressionSingleObjectiveConstraintPearsonRSquaredEvaluator(StorableConstructorFlag _) : base(_) { }
35    protected SymbolicRegressionSingleObjectiveConstraintPearsonRSquaredEvaluator(SymbolicRegressionSingleObjectiveConstraintPearsonRSquaredEvaluator original, Cloner cloner)
36      : base(original, cloner) {
37    }
38    public override IDeepCloneable Clone(Cloner cloner) {
39      return new SymbolicRegressionSingleObjectiveConstraintPearsonRSquaredEvaluator(this, cloner);
40    }
41
42    public SymbolicRegressionSingleObjectiveConstraintPearsonRSquaredEvaluator() : base() { }
43
44    public override bool Maximization { get { return true; } }
45
46    public override IOperation InstrumentedApply() {
47      var solution = SymbolicExpressionTreeParameter.ActualValue;
48      IEnumerable<int> rows = GenerateRowsToEvaluate();
49
50      double quality = Calculate(SymbolicDataAnalysisTreeInterpreterParameter.ActualValue, solution, EstimationLimitsParameter.ActualValue.Lower, EstimationLimitsParameter.ActualValue.Upper, ProblemDataParameter.ActualValue, rows, ApplyLinearScalingParameter.ActualValue.Value);
51      QualityParameter.ActualValue = new DoubleValue(quality);
52      return base.InstrumentedApply();
53    }
54
55    public static double Calculate(ISymbolicDataAnalysisExpressionTreeInterpreter interpreter, ISymbolicExpressionTree solution, double lowerEstimationLimit, double upperEstimationLimit, IRegressionProblemData problemData, IEnumerable<int> rows, bool applyLinearScaling) {
56      IEnumerable<double> estimatedValues = interpreter.GetSymbolicExpressionTreeValues(solution, problemData.Dataset, rows);
57      IEnumerable<double> targetValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows);
58      OnlineCalculatorError errorState = OnlineCalculatorError.None;
59
60      var constraints = problemData.IntervalConstraints.EnabledConstraints;
61      var variableRanges = problemData.VariableRanges.GetIntervals();
62      var tree = solution;
63
64      if (!SymbolicRegressionConstraintAnalyzer.ConstraintsSatisfied(constraints, variableRanges, tree)) {
65        return 0;
66      }
67
68      var r2 = SymbolicRegressionSingleObjectivePearsonRSquaredEvaluator.Calculate(interpreter, solution, lowerEstimationLimit,
69        upperEstimationLimit, problemData, rows, applyLinearScaling);
70
71      return r2;
72    }
73
74
75    public override double Evaluate(IExecutionContext context, ISymbolicExpressionTree tree,
76      IRegressionProblemData problemData, IEnumerable<int> rows) {
77      SymbolicDataAnalysisTreeInterpreterParameter.ExecutionContext = context;
78      EstimationLimitsParameter.ExecutionContext = context;
79      ApplyLinearScalingParameter.ExecutionContext = context;
80
81      double r2 = Calculate(SymbolicDataAnalysisTreeInterpreterParameter.ActualValue, tree,
82        EstimationLimitsParameter.ActualValue.Lower, EstimationLimitsParameter.ActualValue.Upper, problemData, rows,
83        ApplyLinearScalingParameter.ActualValue.Value);
84
85      SymbolicDataAnalysisTreeInterpreterParameter.ExecutionContext = null;
86      EstimationLimitsParameter.ExecutionContext = null;
87      ApplyLinearScalingParameter.ExecutionContext = null;
88
89      return r2;
90    }
91  }
92}
Note: See TracBrowser for help on using the repository browser.