Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/04/16 22:29:23 (8 years ago)
Author:
gkronber
Message:

#2604: set default target variable to string.Empty in AfterDeserialization hook for regression and classification models and changed a few ctor calls to correctly pass the target variable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/RegressionTreeBuilder.cs

    r13895 r13992  
    137137      int nRows = idx.Count();
    138138
    139       // shuffle variable idx
     139      // shuffle variable names
    140140      HeuristicLab.Random.ListExtensions.ShuffleInPlace(allowedVariables, random);
    141141
     
    176176      CreateRegressionTreeFromQueue(maxSize, lossFunction);
    177177
    178       return new RegressionTreeModel(tree.ToArray());
     178      return new RegressionTreeModel(tree.ToArray(), problemData.TargetVariable, );
    179179    }
    180180
Note: See TracChangeset for help on using the changeset viewer.