I would like to use multiprocessing by specifying the n_jobs
parameter in sklearn.model_selection.RandomizedSearchCV
I would like to specify this through the pycaret
wrapper in pycaret.classification.tune_model
.
I have tried passing the n_jobs
as **kwargs
, but a TypeError: ABCMeta object got multiple values for keyword argument 'n_jobs'
How do I use all workers for my hyper-parameter tuning?