Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2988_ModelsOfModels2/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/ModelsFrequencyAnalyzer.cs @ 16760

Last change on this file since 16760 was 16734, checked in by msemenki, 6 years ago

#2988: Add Model Symbol Frequency Analyzer and Model's Clusters Frequency Analyzer. Fix Bag's with Keys. Fix changing during mutation for Variables Types in SubModels .

File size: 7.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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 HEAL.Attic;
23using HeuristicLab.Analysis;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using System;
31using System.Collections.Generic;
32using System.Linq;
33
34namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
35  /// <summary>
36  /// Calculates the accumulated frequencies of variable-symbols over all trees in the population.
37  /// </summary>
38  [Item("SymbolicDataAnalysisModelsFrequencyAnalyzer", "Calculates the accumulated frequencies of Model Clusters over all trees in the population.")]
39  [StorableType("0A5EAD1D-89E1-4D89-935C-2CBC142834EE")]
40  public sealed class ModelsFrequencyAnalyzer : SymbolicDataAnalysisAnalyzer {
41    private const string ModelsFrequencyParameterName = "ModelsFrequency";
42    private const string AggregateModelParameterName = "AggregateModelClusters";
43
44    #region parameter properties
45    public ILookupParameter<DataTable> ModelFrequencyParameter {
46      get { return (ILookupParameter<DataTable>)Parameters[ModelsFrequencyParameterName]; }
47    }
48    public IValueLookupParameter<BoolValue> AggregateModelParameter {
49      get { return (IValueLookupParameter<BoolValue>)Parameters[AggregateModelParameterName]; }
50    }
51    #endregion
52    #region properties
53    public BoolValue AggregateModel {
54      get { return AggregateModelParameter.ActualValue; }
55      set { AggregateModelParameter.Value = value; }
56    }
57    #endregion
58    [StorableConstructor]
59    private ModelsFrequencyAnalyzer(StorableConstructorFlag _) : base(_) { }
60    private ModelsFrequencyAnalyzer(ModelsFrequencyAnalyzer original, Cloner cloner)
61      : base(original, cloner) {
62    }
63    public ModelsFrequencyAnalyzer()
64      : base() {
65      Parameters.Add(new LookupParameter<DataTable>(ModelsFrequencyParameterName, "The relative Model Clusters reference frequencies aggregated over all trees in the population."));
66      Parameters.Add(new ValueLookupParameter<BoolValue>(AggregateModelParameterName, "Switch that determines whether all references to factor Model Clusters should be aggregated regardless of the value. Turn off to analyze all factor variable references with different values separately.", new BoolValue(true)));
67    }
68
69    [StorableHook(HookType.AfterDeserialization)]
70    private void AfterDeserialization() {
71      // BackwardsCompatibility3.3
72      #region Backwards compatible code, remove with 3.4
73      if (!Parameters.ContainsKey(AggregateModelParameterName)) {
74        Parameters.Add(new ValueLookupParameter<BoolValue>(AggregateModelParameterName, "Switch that determines whether all references to factor Model Clusters should be aggregated regardless of the value. Turn off to analyze all factor Model Clusters references with different values separately.", new BoolValue(true)));
75      }
76      #endregion
77    }
78
79    public override IDeepCloneable Clone(Cloner cloner) {
80      return new ModelsFrequencyAnalyzer(this, cloner);
81    }
82
83    public override IOperation Apply() {
84      ItemArray<ISymbolicExpressionTree> expressions = SymbolicExpressionTreeParameter.ActualValue;
85      ResultCollection results = ResultCollection;
86      DataTable datatable;
87      if (ModelFrequencyParameter.ActualValue == null) {
88        datatable = new DataTable("Model frequencies", "Relative frequency of Model references aggregated over the whole population.");
89        datatable.VisualProperties.XAxisTitle = "Generation";
90        datatable.VisualProperties.YAxisTitle = "Relative Model Frequency";
91        ModelFrequencyParameter.ActualValue = datatable;
92        results.Add(new Result("Model frequencies", "Relative frequency of Modelreferences aggregated over the whole population.", datatable));
93      }
94      /* DoubleMatrix map;
95       if (results.ContainsKey("My Map")) {
96         map = (DoubleMatrix)results["My Map"];
97       } else {
98         int generations = 100;
99         map = new DoubleMatrix(generations, expressions.Length);
100       }*/
101      datatable = ModelFrequencyParameter.ActualValue;
102      // all rows must have the same number of values so we can just take the first
103      int numberOfValues = datatable.Rows.Select(r => r.Values.Count).DefaultIfEmpty().First();
104      foreach (var pair in CalculateModelFrequency(expressions).OrderByDescending(x => x.Value)) {
105        //var pair in CalculateModelFrequency(expressions).OrderByDescending(x => x.Value).Take(10)
106        if (!datatable.Rows.ContainsKey(pair.Key)) {
107          // initialize a new row for the variable and pad with zeros
108          DataRow row = new DataRow(pair.Key, "", Enumerable.Repeat(0.0, numberOfValues));
109          row.VisualProperties.StartIndexZero = true;
110          datatable.Rows.Add(row);
111        }
112        datatable.Rows[pair.Key].Values.Add(Math.Round(pair.Value, 3));
113      }
114
115      // add a zero for each data row that was not modified in the previous loop
116      foreach (var row in datatable.Rows.Where(r => r.Values.Count != numberOfValues + 1))
117        row.Values.Add(0.0);
118
119      return base.Apply();
120    }
121
122    public static IEnumerable<KeyValuePair<string, double>> CalculateModelFrequency(IEnumerable<ISymbolicExpressionTree> trees) {
123      var modelFrequency = trees
124          .SelectMany(t => GetModelReferences(t))
125          .GroupBy(pair => pair.Key, pair => pair.Value)
126          .ToDictionary(g => g.Key, g => (double)g.Sum());
127
128      double totalNumberOfSymbols = modelFrequency.Values.Sum();
129
130      foreach (var pair in modelFrequency.OrderBy(p => p.Key, new NaturalStringComparer()))
131        yield return new KeyValuePair<string, double>(pair.Key, pair.Value / totalNumberOfSymbols);
132    }
133
134    private static IEnumerable<KeyValuePair<string, int>> GetModelReferences(ISymbolicExpressionTree tree) {
135      Dictionary<string, int> references = new Dictionary<string, int>();
136      foreach (var treeNode in tree.IterateNodesPrefix().OfType<TreeModelTreeNode>()) {
137        string referenceId = "Model " + treeNode.TreeNumber;
138        if (references.ContainsKey(referenceId)) {
139          references[referenceId]++;
140        } else {
141          references[referenceId] = 1;
142        }
143      }
144      return references;
145    }
146  }
147}
Note: See TracBrowser for help on using the repository browser.