When running keras model inside Jupyter notebook with \"verbose=1\" option, I started getting not single line progress status updates as before, but a flood of status lines
Two things I would recommend:
After a few tests I found that the error is related to tqdm import. Tqdm was used in a piece of code which was later rewritten withoout it. Even though I was not using tqdm in this notebook, just having it imported affected the keras output. To fix it I just commented out this line: from tqdm import tqdm and everything went fine, with nice keras progress bars. Not sure how exactly it conflicted with keras though...
verbose=2 should be used for interactive outputs.