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
Profile picture
HarebrainedOstrich43
Moderator
3 Questions, 12 Answers
  Active since 06 December 2023
  Last activity 3 months ago

Reputation

0

Badges 1

12 × Eureka!
0 Votes
5 Answers
225 Views
0 Votes 5 Answers 225 Views
4 months ago
0 Votes
2 Answers
345 Views
0 Votes 2 Answers 345 Views
Hi, When I try to execute pipeline remotely (in a docker container, triggered from clearml UI) i get an error ' Node '{}', base_task_id is empty".format(node...
5 months ago
0 Votes
20 Answers
240 Views
0 Votes 20 Answers 240 Views
Hi everyone, i have a question about using custom decorators with clearml pipeline. Here is my setup: decorators.py def my_decorator(function): @wraps(functi...
4 months ago
0 Hi Everyone, I Have A Question About Using

Dear @<1523701205467926528:profile|AgitatedDove14> and @<1523701435869433856:profile|SmugDolphin23> , i think i have noticed another interesting effect of decorators. When pipeline method has a custom wrapper (decorator) and I trigger the pipeline from clearml UI, then parameters that are provided via the UI are not actually passed to the pipeline method. At the same time custom decorators used on pipeline components and simple functions works exactly the same both when I trigger pipeline ...

3 months ago
0 Hi, When I Try To Execute Pipeline Remotely (In A Docker Container, Triggered From Clearml Ui) I Get An Error '

Hi @<1523701205467926528:profile|AgitatedDove14> , thank you very much, it solved my issues!

5 months ago
0 Hi Everyone, I Have A Question About Using

@<1523701205467926528:profile|AgitatedDove14> thank you very much for update! I am looking forward to the RC :)

4 months ago
0 Hi Everyone, I Have A Question About Using

Hi @<1523701205467926528:profile|AgitatedDove14> , i got a strange behavior also with this RC. For pipeline itself and simple functions it works well as before. But for pipeline components I still get an error. Below are some examples based on the code I have shared initially (I have slightly modified it).

With the old clearml version 1.12.2.

If I remove @my_decorator from my_pipeline_component_with_wrapper pipeline runs successfully and produces following output:

--- main started
...
4 months ago
0 Hi Everyone, I Have A Question About Using

@<1523701205467926528:profile|AgitatedDove14> , thank you, I am looking forward for any updates. By the way, I am running pipeline with a poetry script, but I do not think it is relevant to the use of decorators.

4 months ago
0 Hi Everyone, I Have A Question About Using

Hi @<1523701205467926528:profile|AgitatedDove14> , thanks for the update and for the fix. This RC works well on my test code when I place custom decorator under pipeline decorator, which is great. The other order (with custom decorator above pipeline fails - just for you info 🙂 ) I will soon update my production code and will let you know if I notice any side effects.

4 months ago
0 Hi Everyone, I Have A Question About Using

@<1523701205467926528:profile|AgitatedDove14> , I am not sure if it is a side effect of this fix, but with the new version of clearml, when I run pipeline locally it is no longer being reported to the server. Each step is reported separately in experiments, but no new run is visible in the "Pipelines".

4 months ago
0 Hi Everyone, I Have A Question About Using

@<1523701205467926528:profile|AgitatedDove14> , the issue is present with 1.13.3rc1 for me as well. With 1.13.2 pipeline is correctly reported.

4 months ago
0 Hi Everyone, I Have A Question About Using

@<1523701205467926528:profile|AgitatedDove14> , great, thank you for reacting so fast :)

4 months ago
0 Hi Everyone, I Have A Question About Using

@<1523701435869433856:profile|SmugDolphin23> , looks good, I can see the pipeline again. Thank you for a quick fix!

4 months ago
0 Hi Everyone, I Get An Error When I Add An Argument Of Type Enum To A Pipeline Component (@Pipelinedecorator.Component). At The Same Time Pipelines (@Pipelinedecorator.Pipeline) And Normal Functions Work Fine With Enums. The Error Message Looks Like This:

Hi @<1523701435869433856:profile|SmugDolphin23> , thank you for getting back to me. I actually have my Enum in a separate file. I have tried importing it both to the context (file with pipeline component) and to inside of the pipeline component function. Unfortunatelly it does not work. The same scenario for pipeline itself works perfectly fine (when Enum is imported to the context, aka .py file with pipeline code).

Important : it only fails when default value is provided. Simply defin...

4 months ago