You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the nodesize parameter (either given, or default 5 for regression and 1 for classification) exceeds (edit: or equals) the sampsize parameter (either given, or defaulting to if (replace) nrow(x) else ceiling(0.632 * nrow(x))), classif.randomForest and regr.randomForest hang and can no longer be interrupted with Ctrl-C.
I don't know if this should be mlr's responsibility; in principle, the trainLearner code could check for this and throw an error. Please tell me if these kind of bugs don't belong here.
The text was updated successfully, but these errors were encountered:
. Please tell me if these kind of bugs don't belong here.
i really do not think that we want to maintain all of these special cases in mlr?
and if the learner hangs that seems like a really bad bug in the package - which you should take up with the original package author
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
If the
nodesize
parameter (either given, or default 5 for regression and 1 for classification) exceeds (edit: or equals) thesampsize
parameter (either given, or defaulting toif (replace) nrow(x) else ceiling(0.632 * nrow(x))
),classif.randomForest
andregr.randomForest
hang and can no longer be interrupted with Ctrl-C.I don't know if this should be mlr's responsibility; in principle, the
trainLearner
code could check for this and throw an error. Please tell me if these kind of bugs don't belong here.The text was updated successfully, but these errors were encountered: