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 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
3 years ago
0 Votes
6 Answers
951 Views
0 Votes 6 Answers 951 Views
Can someone confirm if docker_setup_bash_script works with k8s integration? Doesn’t seem to for me, and wanted to confirm if I was doing something wrong.
3 years ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
3 years ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
Collecting click Using cached click-8.0.1-py3-none-any.whl (97 kB)And then: ERROR: typer 0.3.2 has requirement click<7.2.0,>=7.1.1, but you'll have click 8.0...
3 years ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
Anyway to make a job fail if the required python version (3.7 vs 3.8 for example) is not available in the agent?
3 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
In 1.0.3, I am able to do task.execute_remotely(clone=True, exit_process=False) and then enqueue. In 1.0.5, it says queue must be specified. Any reason for t...
3 years ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
When using something like pdf2image which requires poppler (which can be installed with conda), how can I ensure that the task can run on an agent correctly?...
3 years ago
0 Votes
24 Answers
1K Views
0 Votes 24 Answers 1K Views
3 years ago
0 Votes
21 Answers
1K Views
0 Votes 21 Answers 1K Views
ClearML Server deployment uses node storage. If more than one node is labeled as app=clearml, and you redeploy or update later, then ClearML Server may not l...
3 years ago
0 Votes
0 Answers
975 Views
0 Votes 0 Answers 975 Views
Can I do these from a notebook? https://github.com/allegroai/clearml/blob/master/examples/pipeline/step2_data_processing.py
3 years ago
0 Votes
8 Answers
957 Views
0 Votes 8 Answers 957 Views
Is it possible to do additional setup (the extra_bash_init_script , container_bash_script etc per task? Say a task requires a system package, install it befo...
3 years ago
Show more results questions
0 Is It Possible To Set An Environment Variable For A Task?

And exact output after the package install and stuff:

Environment setup completed successfully Starting Task Execution: None

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

This worked well:

if project_name is None and Task.current_task() is not None: project_name = Task.current_task().get_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?

Thoughts AgitatedDove14 SuccessfulKoala55 ? Some help would be appreciated.

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 Is It Possible To Set An Environment Variable For A Task?

The first line of it is getting a dataset and it’s failing with no project name

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

It’s essentially this now:

from clearml import Task print(Task.current_task())

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

yeah i was trying in local and it worked as expected. But in local I was creating a Task first and then seeing if it’s able to get project name from it

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

But that itself is running in a task right?

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

Looks like Task.current_task() is indeed None in this case. Bit of log below where I print(Task.current_task()) as first step in the script

Environment setup completed successfully Starting Task Execution: None

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

AgitatedDove14 - the actual replication failed. When we run a task by cloning and enqueueing, there is a current task even if I am yet to do a Task.init right?

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?

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?

AS in clone the task from the UI and run it

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 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 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?

From the code - it’s supposed to not cache if task override is different? I also have task_override that adds a version which changes each run

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

Will debug a bit more and see what’s up

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
Show more results compactanswers