简体   繁体   中英

how to load image data from the bucket to AWS sagemaker notebook?

The images are present as folders - train and test in my s3 bucket. I want to use them as it is in my sagemaker notebook. For example, like on my local server I use test_dir = "C:\\Users\\catvdog\\dataset\\test".

An example of a dir would be:

's3://sagemaker-eu-central-1-123456789/test/sagemaker/sklearncontainer/test'

In more general, you create your path for a file

data_file = 'filename.csv'
datafolder = 'xxx/yyy'
data_location = 's3://{}/{}/{}'.format(bucket, datafolder, data_file)

I think what you're looking for is the s3fs module. For example:

import s3fs

fs = s3fs.S3FileSystem()

directory = 'bucket_name/data'
filenames = fs.ls(directory)
for filename in filenames:
    with fs.open(filename, 'rb') as f:
        # do something with file

For more information s3fs documentation

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM