Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ALPS/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/TreeMatching/SymbolicExpressionTreePhenotypicSimilarityCalculator.cs @ 11997

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

#2269: Removed obsolete diversity analyzer and added the new bottom-up and phenotype diversity analyzers (and similarity calculators)

File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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 HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
26using HeuristicLab.Optimization.Operators;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
30  [Item("PhenotypicSimilarityCalculator", "An operator that calculates the similarity betweeon two trees based on the correlation of their outputs.")]
31  [StorableClass]
32  public class PhenotypicSimilarityCalculator : SingleObjectiveSolutionSimilarityCalculator {
33    public IDataAnalysisProblemData ProblemData { get; set; }
34    public ISymbolicDataAnalysisExpressionTreeInterpreter Interpreter { get; set; }
35
36    public PhenotypicSimilarityCalculator(PhenotypicSimilarityCalculator original, Cloner cloner)
37      : base(original, cloner) {
38    }
39
40    public PhenotypicSimilarityCalculator() { }
41
42    [StorableConstructor]
43    protected PhenotypicSimilarityCalculator(bool deserializing) : base(deserializing) { }
44
45    public override IDeepCloneable Clone(Cloner cloner) {
46      return new PhenotypicSimilarityCalculator(this, cloner);
47    }
48
49    public double CalculateSimilarity(ISymbolicExpressionTree t1, ISymbolicExpressionTree t2) {
50      var v1 = Interpreter.GetSymbolicExpressionTreeValues(t1, ProblemData.Dataset, ProblemData.TrainingIndices);
51      var v2 = Interpreter.GetSymbolicExpressionTreeValues(t2, ProblemData.Dataset, ProblemData.TrainingIndices);
52
53      OnlineCalculatorError error;
54      var r2 = OnlinePearsonsRSquaredCalculator.Calculate(v1, v2, out error);
55
56      if (r2 > 1.0)
57        r2 = 1.0;
58
59      return error == OnlineCalculatorError.None ? r2 : 0;
60    }
61
62    public override double CalculateSolutionSimilarity(IScope leftSolution, IScope rightSolution) {
63      var leftValues = (DoubleArray)leftSolution.Variables["EstimatedValues"].Value;
64      var rightValues = (DoubleArray)rightSolution.Variables["EstimatedValues"].Value;
65      OnlineCalculatorError error;
66      var r2 = OnlinePearsonsRSquaredCalculator.Calculate(leftValues, rightValues, out error);
67
68      if (r2 > 1.0)
69        r2 = 1.0; // sometimes due to fp errors it can happen that the r2 is over 1 (like 1.0000000009)
70
71      return error == OnlineCalculatorError.None ? r2 : 0;
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.