How to pass args to skopt, like n_jobs for multiprocessing? #276
-
Hi, How can we pass arguments to Tried passing it as a keyword arg, but does not work:
Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It doesn't work if it's not implemented in the source. backtesting.py/backtesting/backtesting.py Lines 1247 to 1252 in 73e1534 Passing Don't just believe me; try it for yourself: backtesting.py/backtesting/backtesting.py Line 1440 in 73e1534 |
Beta Was this translation helpful? Give feedback.
It doesn't work if it's not implemented in the source.
backtesting.py/backtesting/backtesting.py
Lines 1247 to 1252 in 73e1534
Passing
n_jobs != 1
won't help you;n_jobs=
in scikit-optimize is only used for building the hyperspace landscape estimators, not for running the comparably likely more expensive ob…