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
Unanswered
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/sample_data/README.md", artifact_object={"key": "value"})
# artifact = task.artifacts.get("/content/sample_data/README.md")  
# print(artifact.get_local_copy())
  
  
Posted 26 days ago
13 Views
0 Answers
26 days ago
25 days ago