Anime-Diffusion / utils.py
Zyrenth's picture
upload files
4f1e28b
raw
history blame contribute delete
114 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False