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 There, I Am Trying To Export The Clearml Task Data And Perform Some Analysis On Them. The Way I Do It Is As Follows:

Hi there, I am trying to export the ClearML task data and perform some analysis on them. The way I do it is as follows:
from clearml.backend_api.session.client import APIClient
c = APIClient()
tasks = c.tasks.get_all(project=[Task.get_project_id('cdf')], page=1, page_size=1)

My problem is that the "task.user" is some sort of uuid string which I could not associate with an actual user. Is there any way to extract the name that shows on the ClearML UI for a particular user id?

  
  
Posted 2 years ago
Votes Newest

Answers


Hi ScrawnyFrog10 , try c.users.get_all()

  
  
Posted 2 years ago
594 Views
1 Answer
2 years ago
one year ago
Tags