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 Respuesta
1
Respuesta aceptada

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
EXPERTO
respondido hace 6 meses
  • 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?

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas