change more hardcoded CPU counts to os.cpu_count()
This commit is contained in:
parent
b8653c6afe
commit
2fda32901b
4 changed files with 4 additions and 4 deletions
|
@ -112,7 +112,7 @@ def fsgs_rfecv(input_df
|
|||
, resampling_type = 'none'
|
||||
, verbose = 3
|
||||
, random_state = 42
|
||||
, n_jobs = 10
|
||||
, n_jobs = os.cpu_count()
|
||||
):
|
||||
'''
|
||||
returns
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue