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
Hello

Hello
How do I set dependencies for the pipeline controller? I'm using the PipelineDecorator to create my pipeline, and the return value of a stage(in the form of a tuple) requires a module called ‘timm’, which is needed to unpack it. How do I go about it?

  
  
Posted one year ago
Votes Newest

Answers 2


More context:
I'm using agents to remotely execute the pipeline,
A weird observation is that adding ‘import timm’ to the pipeline controller doesn't make the agent running the pipeline controller install timm.
Adding to this,
Here I want to run the entire pipeline remotely - both the controller and the components run on agents

  
  
Posted one year ago

Hi WickedElephant66
in the pipeline component, import the required package it should auto detect it, or in the decorator function add the argument "packages"
https://github.com/allegroai/clearml/blob/0397f2b41e41325db2a191070e01b218251bc8b2/clearml/automation/controller.py#L2941

  
  
Posted one year ago
532 Views
2 Answers
one year ago
one year ago
Tags