Cletrason commited on
Commit
5a2859f
1 Parent(s): c4df417

Upload utils (2).py

Browse files
Files changed (1) hide show
  1. utils (2).py +6 -0
utils (2).py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ def is_google_colab():
2
+ try:
3
+ import google.colab
4
+ return True
5
+ except:
6
+ return False