How to show progress bar in regular python console not Jupiter notebook

Dear all

Problem

Trying to display the training progress bar in python console
when I pass the code learn.fine_tune(1) or learn.fit_one_cycle(1) I get

<IPython.core.display.HTML object>

Solving attempt 1 (Unsuccessful)

This is what I have tried (I believe it used to work on the older version)
refer to This thread using

from fastprogress.fastprogress import force_console_behavior
master_bar, progress_bar = force_console_behavior()

but I’m still getting

<IPython.core.display.HTML object>

Anyone please help if possible

Similar topic

2 Likes

I am running into this same issue – were you ever able to find a solution?