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 Again:) Is There A Similar Way Like

Hi again:)
Is there a similar way like get_parameter() to extract the COMPLETED AT parameter from INFO tab ?

  
  
Posted 2 years ago
Votes Newest

Answers 4


I'm not sure how to extract this information.
I'm trying to get the "completed at" information (in my case is Mar 3 2022 12:14 as it is shown in the pic I attached) using the API to my python script.
The closest think I found is by doing the following:
task = clearml.Task.get_task(task_id=<task_id>) task.commentwhich gives me the result:
'Auto-generated at 2022-03-01 06:27:52 UTC by havi@dgroup'This solution can be good too but if there is a way to extract the specific information I will be happy to know:)

  
  
Posted 2 years ago

Hi 🙂
I think you can do it quite easily through the API

  
  
Posted 2 years ago

You can use the API to call tasks.get_by_id and get that specific information. In the response it sits in
data.tasks.0.completed

  
  
Posted 2 years ago

great, thanks!

  
  
Posted 2 years ago
576 Views
4 Answers
2 years ago
one year ago
Tags