Changeset 6649 for trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestClassification.cs
- Timestamp:
- 08/09/11 18:58:09 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestClassification.cs
r6241 r6649 126 126 relClassificationError = rep.relclserror; 127 127 outOfBagRelClassificationError = rep.oobrelclserror; 128 return new RandomForestClassificationSolution( problemData, new RandomForestModel(dforest, targetVariable, allowedInputVariables, classValues));128 return new RandomForestClassificationSolution((IClassificationProblemData)problemData.Clone(), new RandomForestModel(dforest, targetVariable, allowedInputVariables, classValues)); 129 129 } 130 130 #endregion
Note: See TracChangeset
for help on using the changeset viewer.