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
AdventurousBee56
Moderator
3 Questions, 3 Answers
  Active since 23 December 2023
  Last activity 10 months ago

Reputation

0

Badges 1

3 × Eureka!
0 Votes
1 Answers
689 Views
0 Votes 1 Answers 689 Views
10 months ago
0 Votes
2 Answers
786 Views
0 Votes 2 Answers 786 Views
Hi everyone, if I copy embed code on some scalars I want to add to a report, it does not add the title nor the x-axis label into the report. Does anyone know...
12 months ago
0 Votes
3 Answers
649 Views
0 Votes 3 Answers 649 Views
A question on pipeline artifacts and their use in steps. I want to add an artifact to the pipeline (see below), and use it as input to a function step. But t...
10 months ago
0 Hi Everyone, If I Copy Embed Code On Some Scalars I Want To Add To A Report, It Does Not Add The Title Nor The X-Axis Label Into The Report. Does Anyone Know If There Is A Way To Do This?

Hi @<1523701087100473344:profile|SuccessfulKoala55> , I embedded the plot in the way described in the embedding-clearml-visualizations docs , clicking on the Copy embed code and pasting into a report. In the Scalars view of a task you can see the title and axis-label, but in the embedded plot in the report these are not shown, we only see the legend. Would be super useful to also show these in th...

11 months ago
10 months ago
0 A Question On Pipeline Artifacts And Their Use In Steps. I Want To Add An Artifact To The Pipeline (See Below), And Use It As Input To A Function Step. But The Following Does Not Work Because

Hi @<1523701070390366208:profile|CostlyOstrich36> , here's a more full example of what I would like to be able to do:

some_object_instance = dict(a=1, b=2)

def step_func(some_object):
    print(some_object)

pipe = PipelineController(name="my_pipeline", project="my_project")
pipe.upload_artifact(name="some_object", artifact_object=some_object_instance)
pipe.add_function_step(
    name="step",
    function=step_func,
    function_kwargs=dict(param="${pipeline.some_object}"),
)
pipe.sta...
10 months ago