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

better screenshot:

  
  
Posted one year ago

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

  
  
Posted one year 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 one year ago
542 Views
4 Answers
one year ago
one year ago
Tags
Similar posts