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
When Using The Clearml.Backend_Api To Get Tasks, Is There A Way To Know A-Priori How Many Pages I Will Need For All Results? Right Now I Keep Requesting Until Returned Page Size Is Smaller Than 500, Is There A Better Check?

When using the clearml.backend_api to get tasks, is there a way to know a-priori how many pages I will need for all results? Right now I keep requesting until returned page size is smaller than 500, is there a better check?
from clearml.backend_api import Session from clearml.backend_api.services import tasks, projects ... tasks_res = session.send(tasks.GetAllRequest(project=project_ids, page_size=500, page=i))Thanks

  
  
Posted one year ago
Votes Newest

Answers 6


What exactly are you using from each experiment?

  
  
Posted one year ago

The last metrics

  
  
Posted one year ago

Ah, OK

  
  
Posted one year ago

Are you using only_fields to make sure you don't get stuff you don't need? 🙂

  
  
Posted one year ago

Hi SuperficialDolphin93 , not at the moment 😞 - is there any specific use-case to your query? I'm asking since pulling large number of experiments seems not to so optimal?

  
  
Posted one year ago

It's for collecting experiment results at the analysis stage.

  
  
Posted one year ago
191 Views
6 Answers
one year ago
8 months ago
Tags