Skip to content
Snippets Groups Projects
Verified Commit 894687c1 authored by Gärber, Florian's avatar Gärber, Florian
Browse files

fix: Change default `num.threads` to 1

parent 8bc705f0
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ RandomForestSurrogates <- function(
type = c("regression", "classification", "survival"),
status = NULL,
num.trees = 500,
num.threads = parallel::detectCores(),
num.threads = 1,
min.node.size = 1,
permutate = FALSE,
seed = NULL,
......
......@@ -13,7 +13,7 @@ RandomForestSurrogates(
type = c("regression", "classification", "survival"),
status = NULL,
num.trees = 500,
num.threads = parallel::detectCores(),
num.threads = 1,
min.node.size = 1,
permutate = FALSE,
seed = NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment