akhaliq's picture
akhaliq HF staff
Create utils.py
77ee66c
raw history blame
No virus
113 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False