Spaces:
Runtime error
Runtime error
import os | |
def is_google_colab(): | |
if os.getenv("COLAB_RELEASE_TAG"): | |
return True | |
return False |
import os | |
def is_google_colab(): | |
if os.getenv("COLAB_RELEASE_TAG"): | |
return True | |
return False |