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 2 years ago
Votes Newest

Answers 12


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

  
  
Posted 2 years ago

image

  
  
Posted 2 years ago

image

  
  
Posted 2 years 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 2 years ago

What am I missing ?

  
  
Posted 2 years 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 2 years ago

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

  
  
Posted 2 years ago

Monsieur Martin! 1.3.2

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

my server isn't the latest, though..

  
  
Posted 2 years 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 2 years ago
676 Views
12 Answers
2 years ago
3 months ago
Tags
Similar posts