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 one year ago
Votes Newest

Answers 4


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 one year ago

great, thanks!

  
  
Posted one year ago

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

  
  
Posted one year ago

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 one year ago
347 Views
4 Answers
one year ago
10 months ago
Tags