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 Answer
1
Accepted Answer

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
answered 5 months ago
  • 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?

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions