Changeset 17278 for trunk/HeuristicLab.Algorithms.DataAnalysis
- Timestamp:
- 09/27/19 15:10:00 (5 years ago)
- Location:
- trunk/HeuristicLab.Algorithms.DataAnalysis/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/GradientBoostedTreesModelSurrogate.cs
r17272 r17278 118 118 : this(trainingProblemData, seed, lossFunction, iterations, maxSize, r, m, nu) { 119 119 fullModel = model; 120 actualModel = CreateLazyInitFunc();121 120 } 122 121 -
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestModelSurrogate.cs
r17272 r17278 82 82 // wrap an actual model in a surrogate 83 83 public RandomForestModelSurrogate(IRandomForestModel model, string targetVariable, IDataAnalysisProblemData originalTrainingData, 84 int seed, int nTrees, double r, double m, double[] classValues = null) : this(targetVariable, originalTrainingData, seed, nTrees, r, m, classValues) { 84 int seed, int nTrees, double r, double m, double[] classValues = null) 85 : this(targetVariable, originalTrainingData, seed, nTrees, r, m, classValues) { 85 86 fullModel = model; 86 actualModel = CreateLazyInitFunc();87 87 } 88 88
Note: See TracChangeset
for help on using the changeset viewer.