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 2 years ago
Votes Newest

Answers 6


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

  
  
Posted 2 years ago

What exactly are you using from each experiment?

  
  
Posted 2 years 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 2 years ago

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

  
  
Posted 2 years ago

The last metrics

  
  
Posted 2 years ago

Ah, OK

  
  
Posted 2 years ago
493 Views
6 Answers
2 years ago
one year ago
Tags