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
I'M Facing An Issue With The Clearml Sdk. I Want To Pull The Dataset Id Associated With A Task (Recorded As The

I'm facing an issue with the clearml sdk. I want to pull the dataset ID associated with a task (recorded as the datasets parameter in the GUI info panel) but there does not seem to be a method on the Task object to get the contents of the info panel. How can I get the association between Dataset and Task from the Task object?

  
  
Posted 2 months ago
Votes Newest

Answers 2


It seems it's the Task.export_task method. This isn't super clear from the documentation :(

  
  
Posted 2 months ago

Hi SparklingDuck54
Actually the Dataset ID on the task can be easily pulled via:

Task.get_task("task_uid_with_dataset").get_parameter("Datasets/<dataset_alias_name>")

or

Task.get_task("task_uid_with_dataset").get_parameters_as_dict().get("Datasets")
  
  
Posted 2 months ago