Hi everyone, I'm currently trying to set up S3 as a file server for storing all my data (artifacts, datasets, etc.) using ClearML, but I'm encountering some ...
one month ago
After copying the clearml.conf
file to /opt/clearml/config/
, the error has disappeared, but the files still aren't being reflected on S3.
using below code to upload the file.
task = Task.init(project_name="Test Project", task_name="Test Task", output_uri="
")
# task = Task.init(project_name="Test Project", task_name="Test Task")
task.set_parameter(name='disable_caching', value=True, description='Disable caching for this task')
task.upload_artifact(name="/content/sam...
Hey @<1523701070390366208:profile|CostlyOstrich36> could you help me out? I’m having trouble figuring out why it’s not working. I’d really appreciate your help!
Here’s the relevant portion of my clearml.conf
file located at ~/clearml.conf
:
sdk {
aws {
s3 {
key: "AWS_ACCESS_KEY"
secret: "AWS_SECRET_KEY"
region: "us-east-1"
use_credentials_chain: true
credentials: [
{
bucket: "clearml-s3"
key: "AWS_ACCESS_KEY"
secret: "AWS_SECRET_KEY"
region: "us-east-1"
...