Closed ArthurCverianov closed 8 months ago
In the .env file, there are indeed no AWS parameters. The access should be set in your plugin, which is then passed to AWSS3DataLoader. For instance, it could look something like this:
creds = {
"role_arn": "arn:aws:iam::123456789012:role/some_data"
"aws_access_key_id": "TESTACCESSKEIDTEST11",
"aws_secret_access_key": "QWERTY1232qdsadfasfg5349BBdf30ekp23odk03",
}
self.data_loader = AWSS3DataLoader(**creds)
Each individual plugin may use its specific credentials.
Great! it's working now. Thanks!
I'm trying to use my dataset for model training, but I'm encountering the following error:
I attempted to set my AWS Access Key ID in the .env file under the variables MINIO_ACCESS_KEY and MINIO_SECRET_KEY. However, as I understand it, these variables are used for artifact storage, not for my datasets. Can you advise on how I can resolve this error?