Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Profile picture
StrongCamel48
Moderator
1 Question, 3 Answers
  Active since 27 October 2024
  Last activity one month ago

Reputation

0

Badges 1

3 × Eureka!
0 Votes
3 Answers
179 Views
0 Votes 3 Answers 179 Views
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
0 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 Issues With The Configuration. I Am Getting This Error

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...
one month ago
0 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 Issues With The Configuration. I Am Getting This Error

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!

one month ago
0 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 Issues With The Configuration. I Am Getting This Error

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"
                   ...
one month ago