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
NuttyLobster9
Moderator
9 Questions, 38 Answers
  Active since 07 February 2023
  Last activity 11 days ago

Reputation

0

Badges 1

33 × Eureka!
0 Votes
4 Answers
139 Views
0 Votes 4 Answers 139 Views
one month ago
0 Votes
8 Answers
96 Views
0 Votes 8 Answers 96 Views
25 days ago
0 Votes
4 Answers
99 Views
0 Votes 4 Answers 99 Views
Hi All, I’m curious if anyone has an example of editing the configuration of a running TaskScheduler or TriggerScheduler . If I understand correctly the desc...
one month ago
0 Votes
3 Answers
477 Views
0 Votes 3 Answers 477 Views
I’m wondering if someone has an example of how to use the base_task_factory option for adding a step to a PipelineController ? It’s not clear to me how we sh...
7 months ago
0 Votes
15 Answers
74 Views
0 Votes 15 Answers 74 Views
Are there any particular system dependencies needed to enable auto_resource_logging ? My understanding based on None is that this should be enabled by defaul...
20 days ago
0 Votes
10 Answers
111 Views
0 Votes 10 Answers 111 Views
I’m trying to understand the execution flow of pipelines when translating from local to remote execution. I’ve defined a pipeline using the PipelineDecorator...
one month ago
0 Votes
6 Answers
171 Views
0 Votes 6 Answers 171 Views
Hi All, is there a way to clone a pipeline from the web UI like you can with a task? The goal is to be able to give the cloned version a different name so I ...
2 months ago
0 Votes
9 Answers
592 Views
0 Votes 9 Answers 592 Views
11 months ago
0 Votes
6 Answers
661 Views
0 Votes 6 Answers 661 Views
I know at least one other person has posted about this previously, but when I interact with Datasets I keep getting a bunch of repeated logging messages with...
one year ago
0 I’M Trying To Understand The Execution Flow Of Pipelines When Translating From Local To Remote Execution. I’Ve Defined A Pipeline Using The

Gotcha. Are the parameters in @PipelineDecorator.pipeline() ignored in the remote context? Settings like the docker image and gitlab repo would already be used before the pipeline is kicked off on the agent.

one month ago
0 I’M Trying To Understand The Execution Flow Of Pipelines When Translating From Local To Remote Execution. I’Ve Defined A Pipeline Using The

Okay well I have to supply them again for the function to work, but the values are ignored so i can just have a hard-coded version for remote.

I am still struggling to figure out how to update the parameter defaults, though. I would like to be able to do the equivalent of the PipelineController.add_parameter() so that I can supply a local config with new defaults that are used on the remote execution. Otherwise, I’m stuck with whatever defaults are in the function signature.

one month ago
0 Hi All, Is There A Way To Clone A Pipeline From The Web Ui Like You Can With A Task? The Goal Is To Be Able To Give The Cloned Version A Different Name So I Can Organize Pipeline Runs By Project.

Hi @<1523701205467926528:profile|AgitatedDove14> , sorry for the delayed reply. So what you’re saying is to first kick off a new run and then rename the underlying Pipeline Task, which will cause that particular run to become a new pipeline name? But you have to do this only after you’ve started the run.

What would be most ideal would be to be able to right-click on a pipeline run and have a “clone” option, like you can with a task, where you can start a new run with a new name in a single ...

2 months ago
0 Are There Any Particular System Dependencies Needed To Enable

Correction: it works when I am running the code in my local VSCode session. I still don't get resource logging when I run in an agent. 🤔 . And on a similar topic, I have a separate task that is logging metrics with tensorboard. When running locally, I see the metrics appear in the "scalars" tab in ClearML, but when running in an agent, nothing. Any suggestions on where to look?

17 days ago
0 Hi All! Is There Any Simple Way To Use

I actually have a question about your original code snipped, @<1556450111259676672:profile|PlainSeaurchin97> . I have been trying to figure out a way to access the task object when running remotely so that I can instantiate the logger but when I tried task_id = os.getenv("CLEARML_TASK_ID") , it’s returning None . I also tried Task.current_task() and also got None back. What is the recommended way to access the Task object from within the remote agent?

12 months ago
0 Hi All! Is There Any Simple Way To Use

Okay, I take it back. os.getenv("CLEARML_TASK_ID") does work. I forgot to rebuild my container after making the change. Thanks for bringing this option to my attention!

12 months ago
Show more results compactanswers