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
Answered
Hi!! I Have A Question, I Have A Dataset Saved In S3 Using Clearml, Is There A Way Of Getting The Full Path Of This Dataset In S3?? Something Like

hi!! I have a question, I have a dataset saved in s3 using clearml, is there a way of getting the full path of this dataset in s3?? something like

import clearml
ds = clearml.Dataset.get(
        dataset_project="testproject",
        dataset_name="mydataset",
        dataset_tags=None,
        only_completed=True,
        only_published=True
    )

ds.get_full_path()

and return something like
that includes files like

/artifacts/data_033/dataset.b1c184ay031646aj97da9ve0ba326064._j7zcj8c.zip
  
  
Posted 15 days ago
Votes Newest

Answers


Hi @<1673863788857659392:profile|HomelyRabbit25> , the Dataset object should have artifacts and those should have a url attribute. I'd suggest poking around there!

  
  
Posted 15 days ago