Last active
March 24, 2023 19:03
-
-
Save avizyt/a6c0a713853e1e951e74e2bf8c67ddb3 to your computer and use it in GitHub Desktop.
sklearn_gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# hadling for joblib if n_jobs = -1 | |
if self.n_jobs < 0: | |
num_threads = joblib.cpu_count() + self.n_jobs + 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment