Progress bar can be disabled by setting the progress_bar_refresh_rate argument in trainer:
# don't show progress bar
trainer = Trainer(progress_bar_refresh_rate=0)
To disable model structure printing you can set the weights_summary argument in trainer:
# don't print a summary
trainer = Trainer(weights_summary=None)
please see the documentation on trainer flags for more info.
thanks @SkafteNicki
Most helpful comment
Progress bar can be disabled by setting the
progress_bar_refresh_rateargument in trainer:To disable model structure printing you can set the
weights_summaryargument in trainer:please see the documentation on trainer flags for more info.