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
RattyDolphin75
Moderator
1 Question, 4 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

3 × Eureka!
0 Votes
5 Answers
579 Views
0 Votes 5 Answers 579 Views
hey, im trying to create pipeline step with a List[str] as a parameter but it keeps getting serialized into a str. what are the supported types here?
one year ago
0 Hey, Im Trying To Create Pipeline Step With A

example pipeline
` from typing import List

from clearml import PipelineDecorator

@PipelineDecorator.component(
execution_queue="default",
docker="python:3.7",
packages=["clearml"]
)
def download(files: List[str]):
if isinstance(files, str):
print("its a str")

for f in files:
    print(f"download file: {f}")

@PipelineDecorator.pipeline(
name='something',
project='batch data processing',
version='0.1'
)
def batch_pipeline():
return download(
...

one year ago
0 Hey, Im Trying To Create Pipeline Step With A

agh, my bad. had the wrong environment up so was running 1.7.0. 1.8.0 works for me

one year ago
0 Hey, Is There A Way To Pass Docker Args For The Execution Of A Pipeline Controller Defined Through Decorator

FierceHamster54 did you find a way around this? i’m also looking for a solution here without skipping the decorators and building the Task/PipelineController manually

one year ago