File size: 110 Bytes
b381930 | 1 2 3 4 5 6 | import importlib
def is_sagemaker_available():
return importlib.util.find_spec("sagemaker") is not None
|
b381930 | 1 2 3 4 5 6 | import importlib
def is_sagemaker_available():
return importlib.util.find_spec("sagemaker") is not None
|