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回答
1
承認された回答

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
エキスパート
回答済み 6ヶ月前
  • 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?

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ