Jelte Bottema
05/24/2025, 1:35 PMMax (Nixtla)
05/26/2025, 5:16 AMJonathan Mackenzie
05/26/2025, 5:45 AMpl.Trainer
, so if when you create the model you pass in enable_progress_bar=False
it should eliminate this logging. If you're loading in a model you can do this:
nf.models[0].trainer_kwargs['enable_progress_bar'] = False
if you want to reduce the logger noise elsewhere do:
logging.getLogger("pytorch_lightning").setLevel(logging.ERROR)
logging.getLogger("lightning.pytorch.utilities.rank_zero").setLevel(logging.ERROR)
I'm also trying to do many predictions, but the library only allows you to do one at a time. If I make progress on that to reduce noise, I'll post about it hereJelte Bottema
05/26/2025, 8:21 AMJelte Bottema
05/26/2025, 8:30 AMJonathan Mackenzie
05/26/2025, 8:31 AMJelte Bottema
05/26/2025, 8:56 AMJonathan Mackenzie
05/26/2025, 9:58 AMtrainer
attribute directly