-
Is it possiple to supress the info messages of models like this: |
Beta Was this translation helpful? Give feedback.
Answered by
d-a-bunin
Nov 21, 2024
Replies: 1 comment 1 reply
-
Hi! Is it a backtest that produces such logs? It looks like these logs are produced by |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Pedklin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! Is it a backtest that produces such logs?
It looks like these logs are produced by
joblib
. You could passjoblib_params=dict(verbose=0, backend="multiprocessing", mmap_mode="c")
intobacktest
to silence them.