Silent lr_find

Is there any way that I can run learn.lr_find() silently?

When you say silently, do you mean so it doesn’t print out the chart? If so, the following should work:

%%capture
learn.lr_find()

For reference, you can find the “magic” commands here: https://ipython.readthedocs.io/en/stable/interactive/magics.html

Hi @Tchotchke, yes I’d like it to not print out the chart. I’m not running this in Jupyter, but instead in a containerized environment where the output is saved to a log file.