Closed mfahadakbar closed 1 year ago
Hi, Currently scikit-llm estimators do not have a verbosity parameter. So the only way to disable tqdm is by modifying its init method (this would affect it globally though).
from tqdm import tqdm
from functools import partialmethod
tqdm.__init__ = partialmethod(tqdm.__init__, disable=True)
thank you
Hi,
I wonder if there is a way to suppress the tqdm progress bar during fitting.
Thank you