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
Is There Any Way Of Passing Additional Parameters To Pip In Clearml-Agent? For Example, When You Install

Is there any way of passing additional parameters to pip in clearml-agent? For example, when you install torch_scatter in Ubuntu 20.04, you typically get an error that is fixed by passing -f , like so: python -m pip install torch==2.0.1 torchvision torchaudio torch_scatter -f None ....

  
  
Posted 8 months ago
Votes Newest

Answers 2


@<1601023807399661568:profile|PompousSpider11> , if you know it needs to be installed I guess you could even inject it as a bash script if running in docker mode or just have it already pre-installed. Regardless, clearml-agent will attempt to resolve torch installs.

  
  
Posted 8 months ago

@<1523701070390366208:profile|CostlyOstrich36> thanks for the hint...I'll give it a go....

  
  
Posted 8 months ago