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