sdxl-to-diffusers / utils.py
patrickvonplaten's picture
Duplicate from diffusers/sd-to-diffusers
9a6c912
raw history blame
No virus
112 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False