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
FlatOctopus65
Moderator
4 Questions, 9 Answers
  Active since 10 January 2023
  Last activity one month ago

Reputation

0

Badges 1

9 × Eureka!
0 Votes
10 Answers
615 Views
0 Votes 10 Answers 615 Views
Hi! I developed ClearML pipeline as python package ( pipeline_package for example). When I try to run my pipeline with ClearML Agent, it installs all package...
one year ago
0 Votes
2 Answers
712 Views
0 Votes 2 Answers 712 Views
Hey! Is there way to get latest/best checkpoint from another task (I know task ID)? I know how to get data from artifacts: prev_task: Task = Task.get_task(ta...
one year ago
0 Votes
0 Answers
556 Views
0 Votes 0 Answers 556 Views
Can anyone point me in the right direction with my pipeline problem?
one year ago
0 Votes
6 Answers
74 Views
0 Votes 6 Answers 74 Views
👋 Hi everyone! Before I ask a question - you develop a very cool tool. Thanks! I tried to write simple pipeline using the PipelineDecorator. But found that ...
one year ago
0 Hi! I Developed Clearml Pipeline As Python Package (

I created whl, but where can I add pre-step?

And, more importantly: I wanted to make a separate package for each pipeline, will it work without docker rebuilding for each version of my package?

one year ago
0 Hi! I Developed Clearml Pipeline As Python Package (

hi CostlyOstrich36

In ClearML-Agent, other PC.

one year ago
0 Hi! I Developed Clearml Pipeline As Python Package (

No, cloned repository is this package: tasks, pipeline and utilities.

one year ago
0 Hi Everyone! Before I Ask A Question - You Develop A Very Cool Tool. Thanks! I Tried To Write Simple Pipeline Using The Pipelinedecorator. But Found That The Clearml Modifies The Code, For Example It Replaces

hi, @<1523701070390366208:profile|CostlyOstrich36>

sure:

from clearml.automation.controller import PipelineDecorator


@PipelineDecorator.component(return_values=['img'])
def get_image(image_path):
    import cv2
    img = cv2.imread(image_path)
    img = img[..., ::-1]
    return img


@PipelineDecorator.pipeline(
    project='test',
    name='test pipeline',
    version='0.0.1',
    return_value='result',
)
def executing_pipeline(params):
    print(params)
    result = get_image(pa...
one year ago
0 Hi Everyone! Before I Ask A Question - You Develop A Very Cool Tool. Thanks! I Tried To Write Simple Pipeline Using The Pipelinedecorator. But Found That The Clearml Modifies The Code, For Example It Replaces

python test.py will results in:

Launching step [get_image]
  File "/tmp/tmp7drwjuy0.py", line 8
    img = img[(..., ::(- 1))]
                    ^
SyntaxError: invalid syntax
one year ago