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
TrickySheep9
Moderator
71 Questions, 428 Answers
  Active since 10 January 2023
  Last activity 8 months ago

Reputation

0

Badges 1

383 × Eureka!
0 Getting This Error At

Got it, makes sense on that part!

3 years ago
0 I Am Seeing That Some Steps In A Pipeline Are Being Skipped. Like For Example, In A Pipeline With 4 Steps, It’S Directly Starting At Step 3. Is There Some Reason For This, Some Optimization Kicking In?

` pipe = PipelineController(
default_execution_queue="minerva-default",
add_pipeline_tags=True,
target_project=pipelines_project,
)

    for step in self.config["steps"]:
        name = self._experiment_name(step)
        pipe.add_step(
            name=name,
            base_task_project=pipelines_project,
            base_task_name=name,
            parents=self._get_parents(step),
            task_overrides...
3 years ago
0 Seeing This Error When Trying To Run A Monitor In Services Queue (Agentservices Running On Kubernetes): Am I Missing Some Configuration I Need To Add Over Defaults?

Hey TimelyPenguin76 - i am just using the helm chart and haven’t done any setup on top of that. the agentservices is running as is from the helm chart

3 years ago
0 Getting This Error At

Maybe related to doing in notebook. Doing a task.close() finished it as expected

3 years ago
0 Getting This Error At

That’s great, will try it out soon (it’s 2.30am here, about to crash 🙂 )

3 years ago
0 Getting This Error At

This is a Sagemaker notebook instances - Python 3.6.13

3 years ago
0 Seeing This Error When Trying To Run A Monitor In Services Queue (Agentservices Running On Kubernetes): Am I Missing Some Configuration I Need To Add Over Defaults?

This is the command that is running:

` ['docker', 'run', '-t', '-e', 'NVIDIA_VISIBLE_DEVICES=none', '-e', 'CLEARML_WORKER_ID=clearml-services:service:c606029d77784c69a30edfdf4ba291a5', '-e', 'CLEARML_DOCKER_IMAGE=', '-v', '/tmp/.clearml_agent.72r6h9pl.cfg:/root/clearml.conf', '-v', '/root/.clearml/apt-cache:/var/cache/apt/archives', '-v', '/root/.clearml/pip-cache:/root/.cache/pip', '-v', '/root/.clearml/pip-download-cache:/root/.clearml/pip-download-cache', '-v', '/root/.clearml/cache:/clea...

3 years ago
3 years ago
0 Is It Possible To Set An Environment Variable For A Task?

Is there a good way to get the project of a task?

3 years ago
0 Is It Possible To Set An Environment Variable For A Task?

Essentially - 1. run a task normally. 2. clone 3. edit to have only those two lines.

Question - since this is a task, why is Task.currnet_task() None?

3 years ago
0 Is It Possible To Set An Environment Variable For A Task?

As in I am cloning a task and running it and in that takes without doing any Task.init i am trying to get the task that is running

3 years ago
0 Getting This Error At

Why do you think?

3 years ago
0 Is It Possible To Set An Environment Variable For A Task?

It’s a task, it’s running in context of a project, but I don’t have a way to get the project name

3 years ago
0 Is It Possible To Set An Environment Variable For A Task?

(I need this because I refer to datasets in the same project but without specifying the project name)

3 years ago
0 Is It Possible To Set An Environment Variable For A Task?

How can a task running like this know its own project name?

3 years ago
0 Is It Possible To Set An Environment Variable For A Task?

I get other things from the project like the dataset

3 years ago
0 The

Great, thanks

3 years ago
3 years ago
0 Is It Possible To Add A Callback For A Pipeline From A Step?

On a related note - is it possible to get things like ${stage_data.artifacts.dataset.url} from within a task rather than passing params in add_step ?

3 years ago
Show more results compactanswers