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
I Think There Is A Little Bug With The

I think there is a little bug with the PipelineDecorator.component : i provide the name of the component but it uses the name of the wrapped function as the task name

  
  
Posted one year ago
Votes Newest

Answers 10


Hi ElegantCoyote26
what's the clearml version you are using?

  
  
Posted one year ago

` @PipelineDecorator.component(
name="my step", return_values=['data_frame'], cache=True, task_type=TaskTypes.data_processing)
def step_one(pickle_data_url: str, extra: int = 43):

stuff here `This seemed to work for me

  
  
Posted one year ago

I was not able to reproduce with the example code 😞
https://github.com/allegroai/clearml/blob/master/examples/pipeline/pipeline_from_decorator.py

  
  
Posted one year ago

my server isn't the latest, though..

  
  
Posted one year ago

sheesh, weird. I don't get the same.

  
  
Posted one year ago

What am I missing ?

  
  
Posted one year ago

Monsieur Martin! 1.3.2

  
  
Posted one year ago

But where do you manually set the name of each task in this code? the .component has a name argument you can provide

  
  
Posted one year ago

Okay found it, ElegantCoyote26 the step name is changed but the Task name remains the same ... 😞
I'll make sure we fix it on the next version

  
  
Posted one year ago
214 Views
10 Answers
one year ago
8 months ago
Tags
Similar posts