Browse code

change to 2 workers

Nick authored on 25/11/2022 03:47:05
Showing 1 changed files

... ...
@@ -88,7 +88,7 @@ setClassUnion("tabularOrList", c("tabular", "list"))
88 88
 #' @examples
89 89
 #' 
90 90
 #'   CrossValParams() # Default is 100 permutations and 5 folds of each.
91
-#'   snow <- SnowParam(workers = 4, RNGseed = 999)
91
+#'   snow <- SnowParam(workers = 2, RNGseed = 999)
92 92
 #'   CrossValParams("Leave-k-Out", leave = 2, parallelParams = snow)
93 93
 #'   # Fully reproducible Leave-2-out cross-validation on 4 cores,
94 94
 #'   # even if feature selection or classifier use random sampling.