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
AverageRabbit65
Moderator
6 Questions, 38 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

38 × Eureka!
0 Votes
28 Answers
2K Views
0 Votes 28 Answers 2K Views
In Pipelines. Is it possible to inject a requierment.txt such that the executing node will install before running tasks?
3 years ago
0 Votes
8 Answers
2K Views
0 Votes 8 Answers 2K Views
Hello ClearML, I am curious to know how does the clearml PipelineController know the ip of the ClearML server? It seems it knows the right IP of the task ser...
3 years ago
0 Votes
7 Answers
2K Views
0 Votes 7 Answers 2K Views
I have a question about how to load a local directory to clearml's venv-builds Assume the following file layout: tree . ├── demo.py └── local_dir ├── hello.p...
3 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
ClearML Task: created new task id=534d48409021456a856a83c070af2b50ac295b21 ClearML results page: ClearML pipeline page: ======> WARNING! Git diff to large to...
3 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Do you guys offer some hands on training sessions? I am thinking to organize such an event at our company.
3 years ago
0 Votes
17 Answers
2K Views
0 Votes 17 Answers 2K Views
Hey guys, Is there an e2e working example of writing a pipeline with 2-3 tasks? Just an hello world. I am the first one who tries to make ClearML pipeline to...
3 years ago
3 years ago
3 years ago
0 In Pipelines. Is It Possible To Inject A Requierment.Txt Such That The Executing Node Will Install Before Running Tasks?

PIP Mode

By default, ClearML Agent works in PIP Mode, in which it uses

as the package manager. When ClearML runs, it will create a virtual environment (or reuse an existing one, see

). Task dependencies (Python packages) will be installed in the virtual environment.

how does it know what are the dependencies of a task?

3 years ago
0 In Pipelines. Is It Possible To Inject A Requierment.Txt Such That The Executing Node Will Install Before Running Tasks?

or how can I add some libraries I'd like it to pip install in the new environment

3 years ago
3 years ago
0 In Pipelines. Is It Possible To Inject A Requierment.Txt Such That The Executing Node Will Install Before Running Tasks?

the question how does ClearML know to create env and what files does it copy to the task
/homes/yossi/.clearml/venvs-builds/3.7/

3 years ago
0 I Have A Question About How To Load A Local Directory To Clearml'S

TimelyPenguin76

thanks again... I have tried what you have suggested. It does inject the dir, but not cloning the whole content.

os.system("tree") from within demo.py pipeline step function:

└── test-demo-clearml.git ├── demo.py ├── __init__.py ├── local_dir └── step_one_task.pyvs.
from the actual tree (under ~/clearml_using_local_lib )
` tree
.
├── demo.py
├── init.py
└── local_dir
├── hello.py
├── init.py
└── pycache
└── __i...

3 years ago
0 Hey Guys, Is There An E2E Working Example Of Writing A Pipeline With 2-3 Tasks? Just An Hello World. I Am The First One Who Tries To Make Clearml Pipeline To Work I Wasn'T Able To Make It:

ClearML Task: created new task id=bda6736172df497a83290b2927df28a2 ClearML results page: 2022-06-30 12:35:16,119 - clearml.Task - INFO - No repository found, storing script code instead ClearML pipeline page: `
2022-06-30 12:35:25,434 - clearml.automation.controller - INFO - Node "step_two" missing parent reference, adding: {'step_one'}
2022-06-30 12:35:25,436 - clearml.automation.controller - INFO - Node "step_three" missing parent reference, adding: {'step_two'}
2022-06-30 12:35...

3 years ago
0 Hey Guys, Is There An E2E Working Example Of Writing A Pipeline With 2-3 Tasks? Just An Hello World. I Am The First One Who Tries To Make Clearml Pipeline To Work I Wasn'T Able To Make It:

thank you, guys! I think now it works! Amazing step-by-step support! This is sublime!

for future ref., this is a summary of what I have done:

create a project on clearml webUI create a queue on clearml webUI run an agent /homes/yosefhaie/.conda/envs/devops/bin/clearml-agent daemon --create-queue --queue <queue-name> use this test script:` from clearml import PipelineController

We will use the following function an independent pipeline component step

notice all package imports ins...

3 years ago
3 years ago
Show more results compactanswers