[6240] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6240] | 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 |
|
---|
[17931] | 22 | extern alias alglib_3_7;
|
---|
| 23 |
|
---|
[6240] | 24 | using System;
|
---|
| 25 | using System.Collections.Generic;
|
---|
| 26 | using System.Linq;
|
---|
[17154] | 27 | using HEAL.Attic;
|
---|
[6240] | 28 | using HeuristicLab.Common;
|
---|
| 29 | using HeuristicLab.Core;
|
---|
[14345] | 30 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
[6240] | 31 | using HeuristicLab.Problems.DataAnalysis;
|
---|
[14345] | 32 | using HeuristicLab.Problems.DataAnalysis.Symbolic;
|
---|
[6240] | 33 |
|
---|
| 34 | namespace HeuristicLab.Algorithms.DataAnalysis {
|
---|
| 35 | /// <summary>
|
---|
[6241] | 36 | /// Represents a random forest model for regression and classification
|
---|
[6240] | 37 | /// </summary>
|
---|
[17154] | 38 | [Obsolete("This class only exists for backwards compatibility reasons for stored models with the XML Persistence. Use RFModelSurrogate or RFModelFull instead.")]
|
---|
| 39 | [StorableType("9AA4CCC2-CD75-4471-8DF6-949E5B783642")]
|
---|
[6241] | 40 | [Item("RandomForestModel", "Represents a random forest for regression and classification.")]
|
---|
[13941] | 41 | public sealed class RandomForestModel : ClassificationModel, IRandomForestModel {
|
---|
[10963] | 42 | // not persisted
|
---|
[17931] | 43 | private alglib_3_7.alglib.decisionforest randomForest;
|
---|
| 44 | private alglib_3_7.alglib.decisionforest RandomForest {
|
---|
[10963] | 45 | get {
|
---|
| 46 | // recalculate lazily
|
---|
| 47 | if (randomForest.innerobj.trees == null || randomForest.innerobj.trees.Length == 0) RecalculateModel();
|
---|
| 48 | return randomForest;
|
---|
[6240] | 49 | }
|
---|
| 50 | }
|
---|
| 51 |
|
---|
[13941] | 52 | public override IEnumerable<string> VariablesUsedForPrediction {
|
---|
[13921] | 53 | get { return originalTrainingData.AllowedInputVariables; }
|
---|
| 54 | }
|
---|
| 55 |
|
---|
[14345] | 56 | public int NumberOfTrees {
|
---|
| 57 | get { return nTrees; }
|
---|
| 58 | }
|
---|
[13921] | 59 |
|
---|
[10963] | 60 | // instead of storing the data of the model itself
|
---|
| 61 | // we instead only store data necessary to recalculate the same model lazily on demand
|
---|
[6240] | 62 | [Storable]
|
---|
[10963] | 63 | private int seed;
|
---|
[6240] | 64 | [Storable]
|
---|
[10963] | 65 | private IDataAnalysisProblemData originalTrainingData;
|
---|
[6241] | 66 | [Storable]
|
---|
| 67 | private double[] classValues;
|
---|
[10963] | 68 | [Storable]
|
---|
| 69 | private int nTrees;
|
---|
| 70 | [Storable]
|
---|
| 71 | private double r;
|
---|
| 72 | [Storable]
|
---|
| 73 | private double m;
|
---|
| 74 |
|
---|
[6240] | 75 | [StorableConstructor]
|
---|
[16565] | 76 | private RandomForestModel(StorableConstructorFlag _) : base(_) {
|
---|
[10963] | 77 | // for backwards compatibility (loading old solutions)
|
---|
[17931] | 78 | randomForest = new alglib_3_7.alglib.decisionforest();
|
---|
[6240] | 79 | }
|
---|
[6241] | 80 | private RandomForestModel(RandomForestModel original, Cloner cloner)
|
---|
[6240] | 81 | : base(original, cloner) {
|
---|
[17931] | 82 | randomForest = new alglib_3_7.alglib.decisionforest();
|
---|
[6240] | 83 | randomForest.innerobj.bufsize = original.randomForest.innerobj.bufsize;
|
---|
| 84 | randomForest.innerobj.nclasses = original.randomForest.innerobj.nclasses;
|
---|
| 85 | randomForest.innerobj.ntrees = original.randomForest.innerobj.ntrees;
|
---|
| 86 | randomForest.innerobj.nvars = original.randomForest.innerobj.nvars;
|
---|
[10963] | 87 | // we assume that the trees array (double[]) is immutable in alglib
|
---|
| 88 | randomForest.innerobj.trees = original.randomForest.innerobj.trees;
|
---|
[11315] | 89 |
|
---|
[10963] | 90 | // allowedInputVariables is immutable so we don't need to clone
|
---|
| 91 | allowedInputVariables = original.allowedInputVariables;
|
---|
| 92 |
|
---|
| 93 | // clone data which is necessary to rebuild the model
|
---|
| 94 | this.seed = original.seed;
|
---|
| 95 | this.originalTrainingData = cloner.Clone(original.originalTrainingData);
|
---|
| 96 | // classvalues is immutable so we don't need to clone
|
---|
| 97 | this.classValues = original.classValues;
|
---|
| 98 | this.nTrees = original.nTrees;
|
---|
| 99 | this.r = original.r;
|
---|
| 100 | this.m = original.m;
|
---|
[6240] | 101 | }
|
---|
[10963] | 102 |
|
---|
| 103 | // random forest models can only be created through the static factory methods CreateRegressionModel and CreateClassificationModel
|
---|
[17931] | 104 | private RandomForestModel(string targetVariable, alglib_3_7.alglib.decisionforest randomForest,
|
---|
[10963] | 105 | int seed, IDataAnalysisProblemData originalTrainingData,
|
---|
| 106 | int nTrees, double r, double m, double[] classValues = null)
|
---|
[13941] | 107 | : base(targetVariable) {
|
---|
[6240] | 108 | this.name = ItemName;
|
---|
| 109 | this.description = ItemDescription;
|
---|
[10963] | 110 | // the model itself
|
---|
[6240] | 111 | this.randomForest = randomForest;
|
---|
[10963] | 112 | // data which is necessary for recalculation of the model
|
---|
| 113 | this.seed = seed;
|
---|
| 114 | this.originalTrainingData = (IDataAnalysisProblemData)originalTrainingData.Clone();
|
---|
| 115 | this.classValues = classValues;
|
---|
| 116 | this.nTrees = nTrees;
|
---|
| 117 | this.r = r;
|
---|
| 118 | this.m = m;
|
---|
[6240] | 119 | }
|
---|
| 120 |
|
---|
| 121 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[6241] | 122 | return new RandomForestModel(this, cloner);
|
---|
[6240] | 123 | }
|
---|
| 124 |
|
---|
[10963] | 125 | private void RecalculateModel() {
|
---|
| 126 | double rmsError, oobRmsError, relClassError, oobRelClassError;
|
---|
| 127 | var regressionProblemData = originalTrainingData as IRegressionProblemData;
|
---|
| 128 | var classificationProblemData = originalTrainingData as IClassificationProblemData;
|
---|
| 129 | if (regressionProblemData != null) {
|
---|
| 130 | var model = CreateRegressionModel(regressionProblemData,
|
---|
| 131 | nTrees, r, m, seed, out rmsError, out oobRmsError,
|
---|
| 132 | out relClassError, out oobRelClassError);
|
---|
| 133 | randomForest = model.randomForest;
|
---|
| 134 | } else if (classificationProblemData != null) {
|
---|
| 135 | var model = CreateClassificationModel(classificationProblemData,
|
---|
| 136 | nTrees, r, m, seed, out rmsError, out oobRmsError,
|
---|
| 137 | out relClassError, out oobRelClassError);
|
---|
| 138 | randomForest = model.randomForest;
|
---|
| 139 | }
|
---|
| 140 | }
|
---|
| 141 |
|
---|
[12509] | 142 | public IEnumerable<double> GetEstimatedValues(IDataset dataset, IEnumerable<int> rows) {
|
---|
[14843] | 143 | double[,] inputData = dataset.ToArray(AllowedInputVariables, rows);
|
---|
[17154] | 144 | RandomForestUtil.AssertInputMatrix(inputData);
|
---|
[6240] | 145 |
|
---|
| 146 | int n = inputData.GetLength(0);
|
---|
| 147 | int columns = inputData.GetLength(1);
|
---|
| 148 | double[] x = new double[columns];
|
---|
| 149 | double[] y = new double[1];
|
---|
| 150 |
|
---|
| 151 | for (int row = 0; row < n; row++) {
|
---|
| 152 | for (int column = 0; column < columns; column++) {
|
---|
| 153 | x[column] = inputData[row, column];
|
---|
| 154 | }
|
---|
[17931] | 155 | alglib_3_7.alglib.dfprocess(RandomForest, x, ref y);
|
---|
[6240] | 156 | yield return y[0];
|
---|
| 157 | }
|
---|
| 158 | }
|
---|
| 159 |
|
---|
[14107] | 160 | public IEnumerable<double> GetEstimatedVariances(IDataset dataset, IEnumerable<int> rows) {
|
---|
[14843] | 161 | double[,] inputData = dataset.ToArray(AllowedInputVariables, rows);
|
---|
[17154] | 162 | RandomForestUtil.AssertInputMatrix(inputData);
|
---|
[14107] | 163 |
|
---|
| 164 | int n = inputData.GetLength(0);
|
---|
| 165 | int columns = inputData.GetLength(1);
|
---|
| 166 | double[] x = new double[columns];
|
---|
[14230] | 167 | double[] ys = new double[this.RandomForest.innerobj.ntrees];
|
---|
[14107] | 168 |
|
---|
| 169 | for (int row = 0; row < n; row++) {
|
---|
| 170 | for (int column = 0; column < columns; column++) {
|
---|
| 171 | x[column] = inputData[row, column];
|
---|
| 172 | }
|
---|
[17931] | 173 | alglib_3_7.alglib.dforest.dfprocessraw(RandomForest.innerobj, x, ref ys);
|
---|
[14107] | 174 | yield return ys.VariancePop();
|
---|
| 175 | }
|
---|
| 176 | }
|
---|
| 177 |
|
---|
[13941] | 178 | public override IEnumerable<double> GetEstimatedClassValues(IDataset dataset, IEnumerable<int> rows) {
|
---|
[14843] | 179 | double[,] inputData = dataset.ToArray(AllowedInputVariables, rows);
|
---|
[17154] | 180 | RandomForestUtil.AssertInputMatrix(inputData);
|
---|
[6241] | 181 |
|
---|
| 182 | int n = inputData.GetLength(0);
|
---|
| 183 | int columns = inputData.GetLength(1);
|
---|
| 184 | double[] x = new double[columns];
|
---|
[10963] | 185 | double[] y = new double[RandomForest.innerobj.nclasses];
|
---|
[6241] | 186 |
|
---|
| 187 | for (int row = 0; row < n; row++) {
|
---|
| 188 | for (int column = 0; column < columns; column++) {
|
---|
| 189 | x[column] = inputData[row, column];
|
---|
| 190 | }
|
---|
[17931] | 191 | alglib_3_7.alglib.dfprocess(randomForest, x, ref y);
|
---|
[6241] | 192 | // find class for with the largest probability value
|
---|
| 193 | int maxProbClassIndex = 0;
|
---|
| 194 | double maxProb = y[0];
|
---|
| 195 | for (int i = 1; i < y.Length; i++) {
|
---|
| 196 | if (maxProb < y[i]) {
|
---|
| 197 | maxProb = y[i];
|
---|
| 198 | maxProbClassIndex = i;
|
---|
| 199 | }
|
---|
| 200 | }
|
---|
| 201 | yield return classValues[maxProbClassIndex];
|
---|
| 202 | }
|
---|
| 203 | }
|
---|
| 204 |
|
---|
[14345] | 205 | public ISymbolicExpressionTree ExtractTree(int treeIdx) {
|
---|
[14368] | 206 | var rf = RandomForest;
|
---|
[14345] | 207 | // hoping that the internal representation of alglib is stable
|
---|
[13941] | 208 |
|
---|
[14345] | 209 | // TREE FORMAT
|
---|
| 210 | // W[Offs] - size of sub-array (for the tree)
|
---|
| 211 | // node info:
|
---|
| 212 | // W[K+0] - variable number (-1 for leaf mode)
|
---|
| 213 | // W[K+1] - threshold (class/value for leaf node)
|
---|
| 214 | // W[K+2] - ">=" branch index (absent for leaf node)
|
---|
| 215 |
|
---|
| 216 | // skip irrelevant trees
|
---|
| 217 | int offset = 0;
|
---|
| 218 | for (int i = 0; i < treeIdx - 1; i++) {
|
---|
[14368] | 219 | offset = offset + (int)Math.Round(rf.innerobj.trees[offset]);
|
---|
[14345] | 220 | }
|
---|
| 221 |
|
---|
[18132] | 222 | var numSy = new Number();
|
---|
[14345] | 223 | var varCondSy = new VariableCondition() { IgnoreSlope = true };
|
---|
| 224 |
|
---|
[18132] | 225 | var node = CreateRegressionTreeRec(rf.innerobj.trees, offset, offset + 1, numSy, varCondSy);
|
---|
[14345] | 226 |
|
---|
| 227 | var startNode = new StartSymbol().CreateTreeNode();
|
---|
| 228 | startNode.AddSubtree(node);
|
---|
| 229 | var root = new ProgramRootSymbol().CreateTreeNode();
|
---|
| 230 | root.AddSubtree(startNode);
|
---|
| 231 | return new SymbolicExpressionTree(root);
|
---|
| 232 | }
|
---|
| 233 |
|
---|
[18132] | 234 | private ISymbolicExpressionTreeNode CreateRegressionTreeRec(double[] trees, int offset, int k, Number numSy, VariableCondition varCondSy) {
|
---|
[14345] | 235 |
|
---|
| 236 | // alglib source for evaluation of one tree (dfprocessinternal)
|
---|
| 237 | // offs = 0
|
---|
| 238 | //
|
---|
| 239 | // Set pointer to the root
|
---|
| 240 | //
|
---|
| 241 | // k = offs + 1;
|
---|
| 242 | //
|
---|
| 243 | // //
|
---|
| 244 | // // Navigate through the tree
|
---|
| 245 | // //
|
---|
| 246 | // while (true) {
|
---|
| 247 | // if ((double)(df.trees[k]) == (double)(-1)) {
|
---|
| 248 | // if (df.nclasses == 1) {
|
---|
| 249 | // y[0] = y[0] + df.trees[k + 1];
|
---|
| 250 | // } else {
|
---|
| 251 | // idx = (int)Math.Round(df.trees[k + 1]);
|
---|
| 252 | // y[idx] = y[idx] + 1;
|
---|
| 253 | // }
|
---|
| 254 | // break;
|
---|
| 255 | // }
|
---|
| 256 | // if ((double)(x[(int)Math.Round(df.trees[k])]) < (double)(df.trees[k + 1])) {
|
---|
| 257 | // k = k + innernodewidth;
|
---|
| 258 | // } else {
|
---|
| 259 | // k = offs + (int)Math.Round(df.trees[k + 2]);
|
---|
| 260 | // }
|
---|
| 261 | // }
|
---|
| 262 |
|
---|
| 263 | if ((double)(trees[k]) == (double)(-1)) {
|
---|
[18132] | 264 | var numNode = (NumberTreeNode)numSy.CreateTreeNode();
|
---|
| 265 | numNode.Value = trees[k + 1];
|
---|
| 266 | return numNode;
|
---|
[14345] | 267 | } else {
|
---|
| 268 | var condNode = (VariableConditionTreeNode)varCondSy.CreateTreeNode();
|
---|
| 269 | condNode.VariableName = AllowedInputVariables[(int)Math.Round(trees[k])];
|
---|
| 270 | condNode.Threshold = trees[k + 1];
|
---|
| 271 | condNode.Slope = double.PositiveInfinity;
|
---|
| 272 |
|
---|
[18132] | 273 | var left = CreateRegressionTreeRec(trees, offset, k + 3, numSy, varCondSy);
|
---|
| 274 | var right = CreateRegressionTreeRec(trees, offset, offset + (int)Math.Round(trees[k + 2]), numSy, varCondSy);
|
---|
[14345] | 275 |
|
---|
| 276 | condNode.AddSubtree(left); // not 100% correct because interpreter uses: if(x <= thres) left() else right() and RF uses if(x < thres) left() else right() (see above)
|
---|
| 277 | condNode.AddSubtree(right);
|
---|
| 278 | return condNode;
|
---|
| 279 | }
|
---|
| 280 | }
|
---|
| 281 |
|
---|
| 282 |
|
---|
[13941] | 283 | public IRegressionSolution CreateRegressionSolution(IRegressionProblemData problemData) {
|
---|
| 284 | return new RandomForestRegressionSolution(this, new RegressionProblemData(problemData));
|
---|
[6603] | 285 | }
|
---|
[13941] | 286 | public override IClassificationSolution CreateClassificationSolution(IClassificationProblemData problemData) {
|
---|
| 287 | return new RandomForestClassificationSolution(this, new ClassificationProblemData(problemData));
|
---|
[6603] | 288 | }
|
---|
| 289 |
|
---|
[16243] | 290 | public bool IsProblemDataCompatible(IRegressionProblemData problemData, out string errorMessage) {
|
---|
| 291 | return RegressionModel.IsProblemDataCompatible(this, problemData, out errorMessage);
|
---|
| 292 | }
|
---|
| 293 |
|
---|
| 294 | public override bool IsProblemDataCompatible(IDataAnalysisProblemData problemData, out string errorMessage) {
|
---|
| 295 | if (problemData == null) throw new ArgumentNullException("problemData", "The provided problemData is null.");
|
---|
| 296 |
|
---|
| 297 | var regressionProblemData = problemData as IRegressionProblemData;
|
---|
| 298 | if (regressionProblemData != null)
|
---|
| 299 | return IsProblemDataCompatible(regressionProblemData, out errorMessage);
|
---|
| 300 |
|
---|
| 301 | var classificationProblemData = problemData as IClassificationProblemData;
|
---|
| 302 | if (classificationProblemData != null)
|
---|
| 303 | return IsProblemDataCompatible(classificationProblemData, out errorMessage);
|
---|
| 304 |
|
---|
[16763] | 305 | throw new ArgumentException("The problem data is not compatible with this random forest. Instead a " + problemData.GetType().GetPrettyName() + " was provided.", "problemData");
|
---|
[16243] | 306 | }
|
---|
| 307 |
|
---|
[10963] | 308 | public static RandomForestModel CreateRegressionModel(IRegressionProblemData problemData, int nTrees, double r, double m, int seed,
|
---|
[11338] | 309 | out double rmsError, out double outOfBagRmsError, out double avgRelError, out double outOfBagAvgRelError) {
|
---|
[15464] | 310 | return CreateRegressionModel(problemData, problemData.TrainingIndices, nTrees, r, m, seed,
|
---|
| 311 | rmsError: out rmsError, outOfBagRmsError: out outOfBagRmsError, avgRelError: out avgRelError, outOfBagAvgRelError: out outOfBagAvgRelError);
|
---|
[11315] | 312 | }
|
---|
[10963] | 313 |
|
---|
[11343] | 314 | public static RandomForestModel CreateRegressionModel(IRegressionProblemData problemData, IEnumerable<int> trainingIndices, int nTrees, double r, double m, int seed,
|
---|
| 315 | out double rmsError, out double outOfBagRmsError, out double avgRelError, out double outOfBagAvgRelError) {
|
---|
[10963] | 316 | var variables = problemData.AllowedInputVariables.Concat(new string[] { problemData.TargetVariable });
|
---|
[14843] | 317 | double[,] inputMatrix = problemData.Dataset.ToArray(variables, trainingIndices);
|
---|
[10963] | 318 |
|
---|
[17931] | 319 | var dForest = RandomForestUtil.CreateRandomForestModelAlglib_3_7(seed, inputMatrix, nTrees, r, m, 1, out var rep);
|
---|
[10963] | 320 |
|
---|
| 321 | rmsError = rep.rmserror;
|
---|
[15464] | 322 | outOfBagRmsError = rep.oobrmserror;
|
---|
[10963] | 323 | avgRelError = rep.avgrelerror;
|
---|
| 324 | outOfBagAvgRelError = rep.oobavgrelerror;
|
---|
| 325 |
|
---|
[13941] | 326 | return new RandomForestModel(problemData.TargetVariable, dForest, seed, problemData, nTrees, r, m);
|
---|
[6240] | 327 | }
|
---|
| 328 |
|
---|
[10963] | 329 | public static RandomForestModel CreateClassificationModel(IClassificationProblemData problemData, int nTrees, double r, double m, int seed,
|
---|
| 330 | out double rmsError, out double outOfBagRmsError, out double relClassificationError, out double outOfBagRelClassificationError) {
|
---|
[15783] | 331 | return CreateClassificationModel(problemData, problemData.TrainingIndices, nTrees, r, m, seed,
|
---|
[15464] | 332 | out rmsError, out outOfBagRmsError, out relClassificationError, out outOfBagRelClassificationError);
|
---|
[11338] | 333 | }
|
---|
[10963] | 334 |
|
---|
[11343] | 335 | public static RandomForestModel CreateClassificationModel(IClassificationProblemData problemData, IEnumerable<int> trainingIndices, int nTrees, double r, double m, int seed,
|
---|
| 336 | out double rmsError, out double outOfBagRmsError, out double relClassificationError, out double outOfBagRelClassificationError) {
|
---|
[11338] | 337 |
|
---|
[10963] | 338 | var variables = problemData.AllowedInputVariables.Concat(new string[] { problemData.TargetVariable });
|
---|
[14843] | 339 | double[,] inputMatrix = problemData.Dataset.ToArray(variables, trainingIndices);
|
---|
[10963] | 340 |
|
---|
| 341 | var classValues = problemData.ClassValues.ToArray();
|
---|
| 342 | int nClasses = classValues.Length;
|
---|
| 343 |
|
---|
| 344 | // map original class values to values [0..nClasses-1]
|
---|
| 345 | var classIndices = new Dictionary<double, double>();
|
---|
| 346 | for (int i = 0; i < nClasses; i++) {
|
---|
| 347 | classIndices[classValues[i]] = i;
|
---|
| 348 | }
|
---|
| 349 |
|
---|
| 350 | int nRows = inputMatrix.GetLength(0);
|
---|
| 351 | int nColumns = inputMatrix.GetLength(1);
|
---|
| 352 | for (int row = 0; row < nRows; row++) {
|
---|
| 353 | inputMatrix[row, nColumns - 1] = classIndices[inputMatrix[row, nColumns - 1]];
|
---|
| 354 | }
|
---|
| 355 |
|
---|
[17931] | 356 | var dForest = RandomForestUtil.CreateRandomForestModelAlglib_3_7(seed, inputMatrix, nTrees, r, m, nClasses, out var rep);
|
---|
[10963] | 357 |
|
---|
| 358 | rmsError = rep.rmserror;
|
---|
| 359 | outOfBagRmsError = rep.oobrmserror;
|
---|
| 360 | relClassificationError = rep.relclserror;
|
---|
| 361 | outOfBagRelClassificationError = rep.oobrelclserror;
|
---|
| 362 |
|
---|
[13941] | 363 | return new RandomForestModel(problemData.TargetVariable, dForest, seed, problemData, nTrees, r, m, classValues);
|
---|
[10963] | 364 | }
|
---|
| 365 |
|
---|
| 366 | #region persistence for backwards compatibility
|
---|
| 367 | // when the originalTrainingData is null this means the model was loaded from an old file
|
---|
| 368 | // therefore, we cannot use the new persistence mechanism because the original data is not available anymore
|
---|
| 369 | // in such cases we still store the compete model
|
---|
| 370 | private bool IsCompatibilityLoaded { get { return originalTrainingData == null; } }
|
---|
| 371 |
|
---|
| 372 | private string[] allowedInputVariables;
|
---|
| 373 | [Storable(Name = "allowedInputVariables")]
|
---|
| 374 | private string[] AllowedInputVariables {
|
---|
| 375 | get {
|
---|
| 376 | if (IsCompatibilityLoaded) return allowedInputVariables;
|
---|
| 377 | else return originalTrainingData.AllowedInputVariables.ToArray();
|
---|
| 378 | }
|
---|
| 379 | set { allowedInputVariables = value; }
|
---|
| 380 | }
|
---|
[6240] | 381 | [Storable]
|
---|
| 382 | private int RandomForestBufSize {
|
---|
| 383 | get {
|
---|
[10963] | 384 | if (IsCompatibilityLoaded) return randomForest.innerobj.bufsize;
|
---|
| 385 | else return 0;
|
---|
[6240] | 386 | }
|
---|
| 387 | set {
|
---|
| 388 | randomForest.innerobj.bufsize = value;
|
---|
| 389 | }
|
---|
| 390 | }
|
---|
| 391 | [Storable]
|
---|
| 392 | private int RandomForestNClasses {
|
---|
| 393 | get {
|
---|
[10963] | 394 | if (IsCompatibilityLoaded) return randomForest.innerobj.nclasses;
|
---|
| 395 | else return 0;
|
---|
[6240] | 396 | }
|
---|
| 397 | set {
|
---|
| 398 | randomForest.innerobj.nclasses = value;
|
---|
| 399 | }
|
---|
| 400 | }
|
---|
| 401 | [Storable]
|
---|
| 402 | private int RandomForestNTrees {
|
---|
| 403 | get {
|
---|
[10963] | 404 | if (IsCompatibilityLoaded) return randomForest.innerobj.ntrees;
|
---|
| 405 | else return 0;
|
---|
[6240] | 406 | }
|
---|
| 407 | set {
|
---|
| 408 | randomForest.innerobj.ntrees = value;
|
---|
| 409 | }
|
---|
| 410 | }
|
---|
| 411 | [Storable]
|
---|
| 412 | private int RandomForestNVars {
|
---|
| 413 | get {
|
---|
[10963] | 414 | if (IsCompatibilityLoaded) return randomForest.innerobj.nvars;
|
---|
| 415 | else return 0;
|
---|
[6240] | 416 | }
|
---|
| 417 | set {
|
---|
| 418 | randomForest.innerobj.nvars = value;
|
---|
| 419 | }
|
---|
| 420 | }
|
---|
| 421 | [Storable]
|
---|
| 422 | private double[] RandomForestTrees {
|
---|
| 423 | get {
|
---|
[10963] | 424 | if (IsCompatibilityLoaded) return randomForest.innerobj.trees;
|
---|
| 425 | else return new double[] { };
|
---|
[6240] | 426 | }
|
---|
| 427 | set {
|
---|
| 428 | randomForest.innerobj.trees = value;
|
---|
| 429 | }
|
---|
| 430 | }
|
---|
| 431 | #endregion
|
---|
| 432 | }
|
---|
| 433 | }
|
---|