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 Everyone! Does Anyone Know If It Possible To Change The

Hi everyone! Does anyone know if it possible to change the DESCRIPTION entry in the INFO from inside the python script that initialises the ClearML task (instead of editing it on the webpage) ?

  
  
Posted 2 years ago
Votes Newest

Answers 4


was expecting something like
clearml_task = Task.init( project_name=project_name, task_name=task_name, continue_last_task=False, description="Edit this here" )

  
  
Posted 2 years ago

Hi NonsensicalWoodpecker96
you can you the SDK 🙂

task = Task.init(project_name=project_name, task_name=task_name)
task.set_comment('Hi there')

  
  
Posted 2 years ago

that’s exactly what I was looking for, thanks a lot!

  
  
Posted 2 years ago

better screenshot:

  
  
Posted 2 years ago
652 Views
4 Answers
2 years ago
one year ago
Tags
Similar posts