Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
lunarfish
/
furrydiffusion
like
0
Runtime error
App
Files
Files
Community
lunarfish
commited on
Dec 27, 2022
Commit
11e89c6
•
1 Parent(s):
2bb5c45
Create utils.py
Browse files
Files changed (1)
hide
show
utils.py
+6
-0
utils.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
def is_google_colab():
2
+
try:
3
+
import google.colab
4
+
return True
5
+
except:
6
+
return False