From 18635c31673e3b444ea3bfe0d279b74d701f3113 Mon Sep 17 00:00:00 2001 From: er-eis Date: Sat, 6 Feb 2021 22:04:22 -0500 Subject: [PATCH] Change default `n_jobs` to 5 The tutorial ipynb file mentions "Since the default is 5-fold cross-validation, we'll use 5 cores to quickly train **dropkick**" within section 2; however, the default value for `n_jobs` within the function definition is 2. --- dropkick/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dropkick/api.py b/dropkick/api.py index 8cc9bc1..ec83a72 100644 --- a/dropkick/api.py +++ b/dropkick/api.py @@ -426,7 +426,7 @@ def dropkick( directions=["above"], alphas=[0.1], max_iter=2000, - n_jobs=2, + n_jobs=5, seed=18, verbose=True, ):