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
My Linter (The Default Vscode Python Extension) Doesn'T Understand

my linter (the default vscode python extension) doesn't understand TaskInstance = TypeVar("TaskInstance", bound="Task") . if I type clearml.Task.current_task().set_ , it can't autocomplete name()
if I instead do this, it works:

task: clearml.Task = clearml.Task.current_task()
task.set_[...name(name)] 
  
  
Posted one month ago
Votes Newest

Answers 3


this is an example of lint not working. setting the name is not the concern

  
  
Posted one month ago

this issue is minor though. even without lint suggestions, everything works fine, it's just a bit slower to work with. since my environment is vanilla, I expect many other people to experience the same thing, unless there is something I'm doing wrong in particular

  
  
Posted one month ago

Not sure what you're trying to do but why not simply use Task.init() and set everything there?

  
  
Posted one month ago
142 Views
3 Answers
one month ago
one month ago
Tags