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, Stupid Questions.

Hi, stupid questions.

  • Is it possible to execute only some tasks in the pipeline or start from somewhere in the middle? The only way i can think of is to execute ones as individual tasks, not a part of the pipeline.
  • Can reports be generated from code using the SDK? So far I don't see the facility to do so except the Server API which seems a little bit hacky. NoneThanks!
  
  
Posted one year ago
Votes Newest

Answers 5


not stupid, also interested in 1

  
  
Posted one year ago

Hi @<1578193384537853952:profile|MoodyOx45> , those are actually pretty good questions 🙂

  • I think so, yes, but your code & pipeline inputs would need to allow this. Your pipeline would need to be written with decorators and there would need to be some logic dependent on the parameters you give the pipeline when running
  • I'm afraid that currently not. I would suggest opening a github feature request for this 🙂
  
  
Posted one year ago

Thanks @<1523701070390366208:profile|CostlyOstrich36> , so i think some control logic must be written the code, and then use the pipeline input to select the portion of tasks to run (pls correct me if i'm wrong)

Then, i assume selectively running only some tasks from the web app is not supported yet? Let's say i want to start running the ClearML example pipeline from step 2, i'm not seeing any option to do so.

  
  
Posted one year ago

You would need to implement this logic yourself. For example you expose a pipeline argument for the controller (These are the configurations you can control via the UI as well) and then basically have if logic in the controller code that will run/skip steps according to the step you'd like to start from.

Makes sense?

  
  
Posted one year ago

Yeah all clear to me. Thank you.

  
  
Posted one year ago
754 Views
5 Answers
one year ago
one year ago
Tags