How to turn off the progress bar when using fit

I would like to NOT show the progress bar that appears when I run this code in a notebook

    model = collab_learner(data, 
                           n_factors=params["n_factors"],
                           y_range=params["y_range"],
                           wd=params["wd"]
                          )
     model.fit_one_cycle(cyc_len=params["epochs"], max_lr=params["max_lr"])

how can I do this?

1 Like