Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GBT/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Crossovers/SymbolicDataAnalysisExpressionDepthConstrainedCrossover.cs @ 12495

Last change on this file since 12495 was 12495, checked in by gkronber, 9 years ago

#2261: merged trunk changes to branch
r12494
#2403: added a null check in the MatlabParameterVectorEvaluator to prevent exceptions when clearstate is called


r12493
#2369: added support for squared errors and relative errors to error-characteristic-curve view


r12492
#2392: implemented PearsonsRCalculator to fix incorrect correlation values in the correlation matrix.


r12491
#2402 don't set task state to waiting when it fails


r12490
#2401 added missing Mono.Cecil plugin dependency


r12488
#2400 - Interfaces for Capaciated-, PickupAndDelivery- and TimeWindowed-ProblemInstances now specify an additional penalty parameter to set the current penalty factor for the constraint relaxation. - The setter of the penalty-property in ...


r12485
#2374 made RegressionSolution and ClassificationSolution non-abstract


r12482
#2320: Fixed warnings in unit test solutions introduced in r12420 by marking methods as obsolete.


r12481
#2320: Fixed AfterDeserialization of GEArtifialAntEvaluator.


r12480
#2320: Fixed error in symbolicexpressiontree crossover regarding the wiring of lookup parameters if persisted file is loaded.


r12479
#2397 moved GeoIP project into ExtLibs


r12478
#2329 fixed bug in simple code editor


r12476
#2331 removed outdated plugins


r12475
#2368 fixed compile warnings


r12474
#2399 worked on Mono project prepare script


r12473
#2329 added a simple code editor for Linux


r12472
#2399 - fixed MathJax.js file name - worked on Mono project prepare script


r12471
#2399 worked on Mono project prepare script


r12470
#2399 fixed pre-build events in project files


r12465
#2399 worked on mono project prepare script


r12464
#2399 added patch to project


r12463
#2399 fixed EPPlus so that it compiles on Linux


r12461
#2398: Skip root and start symbols when calculating impacts and replacement values in the pruning operators.


r12458
#2354 show label when no data is displayed and don't show the legend


r12457
#2353 removed duplicated call to Any() in Hive Status page


r12456
#2368 fixed modifier


r12455
#2368 added support in persistence for typecaches in streams


r12445
#2394: Changed Web.config compilation from debug to release to force script bundling. Changed history loading type from lazy to eager loading to increase performance. Fixed "getCoreStatus" typo in statusCtrl.js


r12443
#2394: Fixed UserTaskQuery and GetStatusHistory in the WebApp.Status plugin


r12442
#2394 added nuget folders to svn ignore list


r12435
#2394: Improved PluginManager and updated hive status monitor.


r12434
#2396 added symbolic expression tree formatter for C#


r12433
#2395: Minor change in DoubleValue.GetValue.


r12432
#2395 Use simple round-trip format for doubles because G17 prints some strange numbers (20.22 to 20.219999999999999999). Some accuracy can still be lost on 64bit machines, but should be very rare and minimal. double.MaxValue can still be pa...


r12431
#2395 Fixed parsing issues by using the G17 format.


r12430
#2394 added missing package config


r12429
#2394 added missing package config


r12428
#2394 added web app and status page to trunk


r12424
#2320: Adapted plugin file and updated project file of SymbolicExpressionTreeEncoding.


r12422
#2320: Merged the encoding class and all accompanying changes in the trunk.


r12401
#2387 Fixed a bug where the automatic selection of the first element behaved differently for the NewItemDialog.


r12400
#2387 Forgot to commit a file.


r12399
#2387 - Added context-menu for expanding and collapsing tree-nodes. - Improve response time when expanding/collapsing all nodes for TypeSelector and NewItemDialog.


r12398
#2387 - Added clearSearch-button in TypeSelector. - Adapted behavior of TypeSelector and NewItemDialog that a selected node stays selected as long as it matches the search criteria.


r12397
#2387 - Adapted behavior of the matching in the TypeSelector that it behave the same as the NewItemDialog. The search string is tokenized by space and matches if all tokens are contained, (eg. "Sym Reg" matches "SymbolicRegression...")...


r12393
#2025 - Removed Expand/CollapseAll buttons. - Removed cycling of items.


r12392
#2386: Updated GetHashCode method in the EnumerableBoolEqualityComparer.


File size: 7.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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;
23using System.Collections.Generic;
24using System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31using HeuristicLab.Random;
32
33namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
34  [Item("DepthConstrainedCrossover", "An operator which performs subtree swapping within a specific depth range. The range parameter controls the crossover behavior:\n" +
35                                     "- HighLevel (upper 25% of the tree)\n" +
36                                     "- Standard (mid 50% of the tree)\n" +
37                                     "- LowLevel (lower 25% of the tree)")]
38  public sealed class SymbolicDataAnalysisExpressionDepthConstrainedCrossover<T> :
39    SymbolicDataAnalysisExpressionCrossover<T> where T : class, IDataAnalysisProblemData {
40    private enum Ranges { HighLevel, Standard, LowLevel };
41    private const string DepthRangeParameterName = "DepthRange";
42
43    #region Parameter properties
44    public IConstrainedValueParameter<StringValue> DepthRangeParameter {
45      get { return (IConstrainedValueParameter<StringValue>)Parameters[DepthRangeParameterName]; }
46    }
47    #endregion
48
49    #region Properties
50    public StringValue DepthRange {
51      get { return (StringValue)DepthRangeParameter.ActualValue; }
52    }
53    #endregion
54
55    [StorableConstructor]
56    private SymbolicDataAnalysisExpressionDepthConstrainedCrossover(bool deserializing) : base(deserializing) { }
57    private SymbolicDataAnalysisExpressionDepthConstrainedCrossover(SymbolicDataAnalysisExpressionCrossover<T> original, Cloner cloner)
58      : base(original, cloner) { }
59    public SymbolicDataAnalysisExpressionDepthConstrainedCrossover()
60      : base() {
61      Parameters.Add(new ConstrainedValueParameter<StringValue>(DepthRangeParameterName, "Depth range specifier"));
62      DepthRangeParameter.ValidValues.Add(new StringValue(Enum.GetName(typeof(Ranges), Ranges.HighLevel)).AsReadOnly());
63      DepthRangeParameter.ValidValues.Add(new StringValue(Enum.GetName(typeof(Ranges), Ranges.Standard)).AsReadOnly());
64      DepthRangeParameter.ValidValues.Add(new StringValue(Enum.GetName(typeof(Ranges), Ranges.LowLevel)).AsReadOnly());
65      name = "DepthConstrainedCrossover";
66    }
67    public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicDataAnalysisExpressionDepthConstrainedCrossover<T>(this, cloner); }
68
69    public override ISymbolicExpressionTree Crossover(IRandom random, ISymbolicExpressionTree parent0, ISymbolicExpressionTree parent1) {
70      return Cross(random, parent0, parent1, MaximumSymbolicExpressionTreeDepth.Value, MaximumSymbolicExpressionTreeLength.Value, DepthRange.Value);
71    }
72
73
74    /// <summary>
75    /// Takes two parent individuals P0 and P1.
76    /// Randomly choose nodes that fall within the specified depth range in both parents.
77    /// </summary>
78    /// <param name="random">Pseudo-random number generator.</param>
79    /// <param name="parent0">First parent.</param>
80    /// <param name="parent1">Second parent.</param>
81    /// <param name="maxDepth">Maximum allowed length depth.</param>
82    /// <param name="maxLength">Maximum allowed tree length.</param>
83    /// <param name="mode">Controls the crossover behavior:
84    /// - HighLevel (upper 25% of the tree),
85    /// - Standard (mid 50%)
86    /// - LowLevel (low 25%)</param>
87    /// <returns></returns>
88    public static ISymbolicExpressionTree Cross(IRandom random, ISymbolicExpressionTree parent0, ISymbolicExpressionTree parent1, int maxDepth, int maxLength, string mode) {
89      int depth = parent0.Root.GetDepth() - 1; // substract 1 because the tree levels are counted from 0
90      var depthRange = new IntRange();
91      const int depthOffset = 2; // skip the first 2 levels (root + startNode)
92      switch ((Ranges)Enum.Parse(typeof(Ranges), mode)) {
93        case Ranges.HighLevel:
94          depthRange.Start = depthOffset; // skip the first 2 levels (root + startNode)
95          depthRange.End = depthRange.Start + (int)Math.Round(depth * 0.25);
96          break;
97        case Ranges.Standard:
98          depthRange.Start = depthOffset + (int)Math.Round(depth * 0.25);
99          depthRange.End = depthRange.Start + (int)Math.Round(depth * 0.5);
100          break;
101        case Ranges.LowLevel:
102          depthRange.Start = depthOffset + (int)Math.Round(depth * 0.75);
103          depthRange.End = Math.Max(depthRange.Start, depth);
104          break;
105      }
106
107      // make sure that the depth range does not exceeded the actual depth of parent0
108      if (depthRange.Start > depth)
109        depthRange.Start = depth;
110      if (depthRange.End < depthRange.Start)
111        depthRange.End = depthRange.Start;
112
113      var crossoverPoints0 = (from node in GetNodesAtDepth(parent0, depthRange) select new CutPoint(node.Parent, node)).ToList();
114
115      if (crossoverPoints0.Count == 0)
116        throw new Exception("No crossover points available in the first parent");
117
118      var crossoverPoint0 = crossoverPoints0.SampleRandom(random);
119      int level = parent0.Root.GetBranchLevel(crossoverPoint0.Child);
120      int length = parent0.Root.GetLength() - crossoverPoint0.Child.GetLength();
121
122      var allowedBranches = (from s in GetNodesAtDepth(parent1, depthRange)
123                             where s.GetDepth() + level <= maxDepth
124                             where s.GetLength() + length <= maxLength
125                             where crossoverPoint0.IsMatchingPointType(s)
126                             select s).ToList();
127      if (allowedBranches.Count == 0) return parent0;
128
129      var selectedBranch = allowedBranches.SampleRandom(random);
130      Swap(crossoverPoint0, selectedBranch);
131      return parent0;
132    }
133
134    private static IEnumerable<ISymbolicExpressionTreeNode> GetNodesAtDepth(ISymbolicExpressionTree tree, IntRange depthRange) {
135      var treeDepth = tree.Root.GetDepth();
136      return from node in tree.Root.IterateNodesPostfix()
137             let depth = treeDepth - node.GetDepth()
138             where depthRange.Start <= depth
139             where depth <= depthRange.End
140             select node;
141    }
142  }
143}
Note: See TracBrowser for help on using the repository browser.