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! If I Want To Programmatically Extract Information On All (Clearml) Tasks Of A Given (Clearml) Project, What Is The Recommended Way? For Example - Let'S Say I Want To Extract Some Specific Metric Curves Points From All Of The Tasks

HI!
If I want to programmatically extract information on all (clearml) tasks of a given (clearml) project,
what is the recommended way?

for example - let's say I want to extract some specific metric curves points from all of the tasks

  
  
Posted one year ago
Votes Newest

Answers 2


Hi GorgeousMole24 , I think for this your best option would be using the API to extract this information.
` from clearml.backend_api.session.client import APIClient

client = APIClient() `is the pythonic usage

  
  
Posted one year ago

CostlyOstrich36 Thanks!

  
  
Posted one year ago