[12590] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14186] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[12590] | 4 | * and the BEACON Center for the Study of Evolution in Action.
|
---|
| 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 | #endregion
|
---|
| 22 |
|
---|
[12658] | 23 | using System;
|
---|
[12372] | 24 | using System.Collections.Generic;
|
---|
[13185] | 25 | using System.Collections.ObjectModel;
|
---|
[12658] | 26 | using System.Globalization;
|
---|
[12332] | 27 | using System.Linq;
|
---|
| 28 | using HeuristicLab.Common;
|
---|
| 29 | using HeuristicLab.Core;
|
---|
| 30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 31 | using HeuristicLab.Problems.DataAnalysis;
|
---|
| 32 |
|
---|
[12590] | 33 | namespace HeuristicLab.Algorithms.DataAnalysis {
|
---|
[12332] | 34 | [StorableClass]
|
---|
| 35 | [Item("RegressionTreeModel", "Represents a decision tree for regression.")]
|
---|
[14027] | 36 | public sealed class RegressionTreeModel : RegressionModel {
|
---|
| 37 | public override IEnumerable<string> VariablesUsedForPrediction {
|
---|
| 38 | get { return tree.Select(t => t.VarName).Where(v => v != TreeNode.NO_VARIABLE); }
|
---|
| 39 | }
|
---|
[12332] | 40 |
|
---|
[12699] | 41 | // trees are represented as a flat array
|
---|
[12658] | 42 | internal struct TreeNode {
|
---|
[12699] | 43 | public readonly static string NO_VARIABLE = null;
|
---|
[12332] | 44 |
|
---|
[14023] | 45 | public TreeNode(string varName, double val, int leftIdx = -1, int rightIdx = -1, double weightLeft = -1.0)
|
---|
[12658] | 46 | : this() {
|
---|
| 47 | VarName = varName;
|
---|
| 48 | Val = val;
|
---|
| 49 | LeftIdx = leftIdx;
|
---|
| 50 | RightIdx = rightIdx;
|
---|
[14023] | 51 | WeightLeft = weightLeft;
|
---|
[12658] | 52 | }
|
---|
| 53 |
|
---|
[14023] | 54 | public string VarName { get; internal set; } // name of the variable for splitting or NO_VARIABLE if terminal node
|
---|
| 55 | public double Val { get; internal set; } // threshold
|
---|
| 56 | public int LeftIdx { get; internal set; }
|
---|
| 57 | public int RightIdx { get; internal set; }
|
---|
| 58 | public double WeightLeft { get; internal set; } // for partial dependence plots (value in range [0..1] describes the fraction of training samples for the left sub-tree
|
---|
[12658] | 59 |
|
---|
[14023] | 60 |
|
---|
[12658] | 61 | // necessary because the default implementation of GetHashCode for structs in .NET would only return the hashcode of val here
|
---|
[12590] | 62 | public override int GetHashCode() {
|
---|
[12632] | 63 | return LeftIdx ^ RightIdx ^ Val.GetHashCode();
|
---|
[12372] | 64 | }
|
---|
[12658] | 65 | // necessary because of GetHashCode override
|
---|
| 66 | public override bool Equals(object obj) {
|
---|
| 67 | if (obj is TreeNode) {
|
---|
| 68 | var other = (TreeNode)obj;
|
---|
| 69 | return Val.Equals(other.Val) &&
|
---|
| 70 | LeftIdx.Equals(other.LeftIdx) &&
|
---|
[12663] | 71 | RightIdx.Equals(other.RightIdx) &&
|
---|
[14023] | 72 | WeightLeft.Equals(other.WeightLeft) &&
|
---|
[12663] | 73 | EqualStrings(VarName, other.VarName);
|
---|
[12658] | 74 | } else {
|
---|
| 75 | return false;
|
---|
| 76 | }
|
---|
| 77 | }
|
---|
[12663] | 78 |
|
---|
| 79 | private bool EqualStrings(string a, string b) {
|
---|
| 80 | return (a == null && b == null) ||
|
---|
| 81 | (a != null && b != null && a.Equals(b));
|
---|
| 82 | }
|
---|
[12332] | 83 | }
|
---|
| 84 |
|
---|
[12699] | 85 | // not storable!
|
---|
| 86 | private TreeNode[] tree;
|
---|
| 87 |
|
---|
[14027] | 88 | #region old storable format
|
---|
[14023] | 89 | // remove with HL 3.4
|
---|
| 90 | [Storable(AllowOneWay = true)]
|
---|
[12699] | 91 | // to prevent storing the references to data caches in nodes
|
---|
[14023] | 92 | // seemingly, it is bad (performance-wise) to persist tuples (tuples are used as keys in a dictionary)
|
---|
[12699] | 93 | private Tuple<string, double, int, int>[] SerializedTree {
|
---|
[14023] | 94 | // get { return tree.Select(t => Tuple.Create(t.VarName, t.Val, t.LeftIdx, t.RightIdx)).ToArray(); }
|
---|
| 95 | set { this.tree = value.Select(t => new TreeNode(t.Item1, t.Item2, t.Item3, t.Item4, -1.0)).ToArray(); } // use a weight of -1.0 to indicate that partial dependence cannot be calculated for old models
|
---|
[12699] | 96 | }
|
---|
[14023] | 97 | #endregion
|
---|
| 98 | #region new storable format
|
---|
| 99 | [Storable]
|
---|
| 100 | private string[] SerializedTreeVarNames {
|
---|
| 101 | get { return tree.Select(t => t.VarName).ToArray(); }
|
---|
| 102 | set {
|
---|
| 103 | if (tree == null) tree = new TreeNode[value.Length];
|
---|
| 104 | for (int i = 0; i < value.Length; i++) {
|
---|
| 105 | tree[i].VarName = value[i];
|
---|
| 106 | }
|
---|
| 107 | }
|
---|
| 108 | }
|
---|
| 109 | [Storable]
|
---|
| 110 | private double[] SerializedTreeValues {
|
---|
| 111 | get { return tree.Select(t => t.Val).ToArray(); }
|
---|
| 112 | set {
|
---|
| 113 | if (tree == null) tree = new TreeNode[value.Length];
|
---|
| 114 | for (int i = 0; i < value.Length; i++) {
|
---|
| 115 | tree[i].Val = value[i];
|
---|
| 116 | }
|
---|
| 117 | }
|
---|
| 118 | }
|
---|
| 119 | [Storable]
|
---|
| 120 | private int[] SerializedTreeLeftIdx {
|
---|
| 121 | get { return tree.Select(t => t.LeftIdx).ToArray(); }
|
---|
| 122 | set {
|
---|
| 123 | if (tree == null) tree = new TreeNode[value.Length];
|
---|
| 124 | for (int i = 0; i < value.Length; i++) {
|
---|
| 125 | tree[i].LeftIdx = value[i];
|
---|
| 126 | }
|
---|
| 127 | }
|
---|
| 128 | }
|
---|
| 129 | [Storable]
|
---|
| 130 | private int[] SerializedTreeRightIdx {
|
---|
| 131 | get { return tree.Select(t => t.RightIdx).ToArray(); }
|
---|
| 132 | set {
|
---|
| 133 | if (tree == null) tree = new TreeNode[value.Length];
|
---|
| 134 | for (int i = 0; i < value.Length; i++) {
|
---|
| 135 | tree[i].RightIdx = value[i];
|
---|
| 136 | }
|
---|
| 137 | }
|
---|
| 138 | }
|
---|
| 139 | [Storable]
|
---|
| 140 | private double[] SerializedTreeWeightLeft {
|
---|
| 141 | get { return tree.Select(t => t.WeightLeft).ToArray(); }
|
---|
| 142 | set {
|
---|
| 143 | if (tree == null) tree = new TreeNode[value.Length];
|
---|
| 144 | for (int i = 0; i < value.Length; i++) {
|
---|
| 145 | tree[i].WeightLeft = value[i];
|
---|
| 146 | }
|
---|
| 147 | }
|
---|
| 148 | }
|
---|
| 149 | #endregion
|
---|
[12332] | 150 |
|
---|
| 151 | [StorableConstructor]
|
---|
| 152 | private RegressionTreeModel(bool serializing) : base(serializing) { }
|
---|
| 153 | // cloning ctor
|
---|
[12658] | 154 | private RegressionTreeModel(RegressionTreeModel original, Cloner cloner)
|
---|
[12332] | 155 | : base(original, cloner) {
|
---|
[12699] | 156 | if (original.tree != null) {
|
---|
| 157 | this.tree = new TreeNode[original.tree.Length];
|
---|
| 158 | Array.Copy(original.tree, this.tree, this.tree.Length);
|
---|
| 159 | }
|
---|
[12332] | 160 | }
|
---|
| 161 |
|
---|
[14027] | 162 | internal RegressionTreeModel(TreeNode[] tree, string targetVariable)
|
---|
| 163 | : base(targetVariable, "RegressionTreeModel", "Represents a decision tree for regression.") {
|
---|
[12332] | 164 | this.tree = tree;
|
---|
| 165 | }
|
---|
| 166 |
|
---|
[13185] | 167 | private static double GetPredictionForRow(TreeNode[] t, ReadOnlyCollection<double>[] columnCache, int nodeIdx, int row) {
|
---|
[12699] | 168 | while (nodeIdx != -1) {
|
---|
| 169 | var node = t[nodeIdx];
|
---|
| 170 | if (node.VarName == TreeNode.NO_VARIABLE)
|
---|
| 171 | return node.Val;
|
---|
[14023] | 172 | if (columnCache[nodeIdx] == null || double.IsNaN(columnCache[nodeIdx][row])) {
|
---|
| 173 | if (node.WeightLeft.IsAlmost(-1.0)) throw new InvalidOperationException("Cannot calculate partial dependence for trees loaded from older versions of HeuristicLab.");
|
---|
| 174 | // weighted average for partial dependence plot (recursive here because we need to calculate both sub-trees)
|
---|
| 175 | return node.WeightLeft * GetPredictionForRow(t, columnCache, node.LeftIdx, row) +
|
---|
| 176 | (1.0 - node.WeightLeft) * GetPredictionForRow(t, columnCache, node.RightIdx, row);
|
---|
| 177 | } else if (columnCache[nodeIdx][row] <= node.Val)
|
---|
[12699] | 178 | nodeIdx = node.LeftIdx;
|
---|
| 179 | else
|
---|
| 180 | nodeIdx = node.RightIdx;
|
---|
| 181 | }
|
---|
| 182 | throw new InvalidOperationException("Invalid tree in RegressionTreeModel");
|
---|
[12332] | 183 | }
|
---|
| 184 |
|
---|
| 185 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 186 | return new RegressionTreeModel(this, cloner);
|
---|
| 187 | }
|
---|
| 188 |
|
---|
[14027] | 189 | public override IEnumerable<double> GetEstimatedValues(IDataset ds, IEnumerable<int> rows) {
|
---|
[12699] | 190 | // lookup columns for variableNames in one pass over the tree to speed up evaluation later on
|
---|
[13185] | 191 | ReadOnlyCollection<double>[] columnCache = new ReadOnlyCollection<double>[tree.Length];
|
---|
| 192 |
|
---|
[12699] | 193 | for (int i = 0; i < tree.Length; i++) {
|
---|
| 194 | if (tree[i].VarName != TreeNode.NO_VARIABLE) {
|
---|
[14023] | 195 | // tree models also support calculating estimations if not all variables used for training are available in the dataset
|
---|
| 196 | if (ds.ColumnNames.Contains(tree[i].VarName))
|
---|
| 197 | columnCache[i] = ds.GetReadOnlyDoubleValues(tree[i].VarName);
|
---|
[12699] | 198 | }
|
---|
| 199 | }
|
---|
[13185] | 200 | return rows.Select(r => GetPredictionForRow(tree, columnCache, 0, r));
|
---|
[12332] | 201 | }
|
---|
| 202 |
|
---|
[14027] | 203 | public override IRegressionSolution CreateRegressionSolution(IRegressionProblemData problemData) {
|
---|
[12332] | 204 | return new RegressionSolution(this, new RegressionProblemData(problemData));
|
---|
| 205 | }
|
---|
[12658] | 206 |
|
---|
| 207 | // mainly for debugging
|
---|
| 208 | public override string ToString() {
|
---|
| 209 | return TreeToString(0, "");
|
---|
| 210 | }
|
---|
| 211 |
|
---|
| 212 | private string TreeToString(int idx, string part) {
|
---|
| 213 | var n = tree[idx];
|
---|
| 214 | if (n.VarName == TreeNode.NO_VARIABLE) {
|
---|
| 215 | return string.Format(CultureInfo.InvariantCulture, "{0} -> {1:F}{2}", part, n.Val, Environment.NewLine);
|
---|
| 216 | } else {
|
---|
| 217 | return
|
---|
[14023] | 218 | TreeToString(n.LeftIdx, string.Format(CultureInfo.InvariantCulture, "{0}{1}{2} <= {3:F} ({4:N3})", part, string.IsNullOrEmpty(part) ? "" : " and ", n.VarName, n.Val, n.WeightLeft))
|
---|
| 219 | + TreeToString(n.RightIdx, string.Format(CultureInfo.InvariantCulture, "{0}{1}{2} > {3:F} ({4:N3}))", part, string.IsNullOrEmpty(part) ? "" : " and ", n.VarName, n.Val, 1.0 - n.WeightLeft));
|
---|
[12658] | 220 | }
|
---|
| 221 | }
|
---|
[14027] | 222 |
|
---|
[12332] | 223 | }
|
---|
| 224 | }
|
---|