gradiopyg / src /utils.py
dorkai's picture
Upload 13 files
bddc905
raw
history blame
303 Bytes
def clear_stdout():
'''
Attempts to clear stdout, whether running in a notebook (IPython) or locally
in a Unix envirnoment.
'''
try:
from IPython.display import clear_output
clear_output(wait=True)
except ImportError:
import os
os.system("clear")