Import image/video from bucket

0

I set up domain, user and IAM to use Sagemaker studio when I created it, I custom my default bucket. But when I run Session().default_bucket() it returns sagemaker-<region>-<account_id> but I would like to return my custom bucket. Secondly, when I import an image or video from sagemaker-<region>-<account_id> whit S3 URI (s3: //sagemaker-<region>-<account_id>/test.jpg, s3: //sagemaker-<region>-<account_id>/test.mp4) I have error message Video not found.

1 réponse
1
Réponse acceptée

To set your own bucket as default bucket you can create the session with

session = sagemaker.Session(default_bucket="your-custom-bucket")

session.default_bucket() # == "your-custom-bucket"

You also need to ensure the the sagemaker execution role has the right permissions on the bucket.

For your second question you need to ensure that the objects exist (confirm using the S3 console) and that the Sagemaker execution role allow access to the bucket and the objects within.

See https://sagemaker.readthedocs.io/en/stable/api/utility/session.html#

AWS
EXPERT
répondu il y a 6 mois
  • I know it but I would not like to set up my default bucket every time. When can I setup it in my S3Policy IAM role or Sagemaker domain settings?

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions