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
AverageBee39
Moderator
5 Questions, 33 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

33 × Eureka!
0 Votes
16 Answers
2K Views
0 Votes 16 Answers 2K Views
Hi guys, just wondering if anyone encountered this error when using the pipeline controller object. I simply added a step with the step-name and base_task_id...
3 years ago
0 Votes
9 Answers
2K Views
0 Votes 9 Answers 2K Views
clearml_agent: ERROR: Command '['/root/.clearml/venvs-builds/3.8/bin/python', '-m', 'pip', '--disable-pip-version-check', 'install', '-r', '/tmp/requirements...
3 years ago
0 Votes
30 Answers
1K Views
0 Votes 30 Answers 1K Views
2 years ago
0 Votes
14 Answers
2K Views
0 Votes 14 Answers 2K Views
4 years ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
3 years ago
0 Clearml_Agent: Error: Command '['/Root/.Clearml/Venvs-Builds/3.8/Bin/Python', '-M', 'Pip', '--Disable-Pip-Version-Check', 'Install', '-R', '/Tmp/Requirements_Hhemiomd.Txt']' Died With <Signals.Sigkill: 9>.

It intermittently reads the requirements.txt between my repo and the cache. Im wondering if there is anyway to circumvent the cache?

3 years ago
0 Hi Guys, Just Wondering If Anyone Encountered This Error When Using The Pipeline Controller Object. I Simply Added A Step With The Step-Name And Base_Task_Id As Flags.

AgitatedDove14 i'm still getting this error in 1.0.6rc2 tho

Exception in thread Thread-1:
Traceback (most recent call last):
File "/home/aaron/.pyenv/versions/3.7.8/lib/python3.7/threading.py", line 926, in _bootstrap_inner
self.run()
File "/home/aaron/.pyenv/versions/3.7.8/lib/python3.7/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
` File "/home/aaron/.pyenv/versions/dev_env/lib/python3.7/site-packages/clearml/a...

3 years ago
0 Hi Guys, Just Wondering If Anyone Encountered This Error When Using The Pipeline Controller Object. I Simply Added A Step With The Step-Name And Base_Task_Id As Flags.

AgitatedDove14 yup it's with target project, the code was really just...

# Creating the pipeline
pipe = PipelineController(target_project= "pipeline-demo", default_execution_queue='default', add_pipeline_tags=False)
pipe.add_step(name='model-predict', base_task_id='17cc79f0dae0426d9354ds08d979980g')
pipe.start()
# Wait until pipeline terminates
pipe.wait()
# cleanup everything
pipe.stop()
print('pipeline completed')

3 years ago
0 Hi All, I'M Trying To Use Cuml With Clearml And Am Curious If Anyone Has Encountered Running The Rapids Image On A Privately Hosted Clearml Agent Before? I Set Clearml_Agent_Pip_Venv_Install=/Opt/Conda/Envs/Rapids/Bin/Python As A Flag Inside Task.Set_Base

Hey SuccessfulKoala55 , i figured a workaround to the problem and just wanted to close the loop. Rapids requires c++ code to be integrated into their package and also auxiliary packages inside their prebuilt image and the pip ecosystem currently doesn't support their requirements https://medium.com/rapids-ai/rapids-0-7-release-drops-pip-packages-47fc966e9472 (hence the need to use conda). Instead of trying to run conda with clearml-agent i figured it might be possible to pass the ` PYTHON...

2 years ago
0 Hi All, I'M Trying To Use Cuml With Clearml And Am Curious If Anyone Has Encountered Running The Rapids Image On A Privately Hosted Clearml Agent Before? I Set Clearml_Agent_Pip_Venv_Install=/Opt/Conda/Envs/Rapids/Bin/Python As A Flag Inside Task.Set_Base

SuccessfulKoala55 SweetBadger76 hey guys i tried to run this line task.set_base_docker("<image> -e CLEARML_AGENT_SKIP_PIP_VENV_INSTALL=/opt/conda/envs/rapids/bin/python -e CLEARML_AGENT__AGENT__PACKAGE_MANAGER_ TYPE=conda -e C LEARML_AGENT__VENV_DIR=/opt/conda/envs") but it is throwing a conda DirectoryNotACondaEnvironmentError, expecting a python 3.8 environment. Am i missing something out here?

2 years ago
0 Hi I'M Trying To Run A Hyperparameter Tuning Experiment On A Privately Hosted Server And The Trials Are Forever Enqueued (Status: Pending) As Long As The Main Task Is Running But The Workers Are Never Utilised When The Trials Are Not Running. Is This Expe

Hey Martin, thanks for the reply. I did set up an agent and the reference template task runs perfectly fine on the worker. I only encounter this problem with the hyper parameter tuning experiments

4 years ago
2 years ago
0 Hi Guys, Just Wondering If Anyone Encountered This Error When Using The Pipeline Controller Object. I Simply Added A Step With The Step-Name And Base_Task_Id As Flags.

Hey AgitatedDove14 , so i have gotten the latest server version (as shown in the image from the bottom right of the user profile page) and still no luck with a simple test example like this using clearml-1.0.6.rc2

from clearml import Task, StorageManager, Dataset, PipelineController

# Creating the pipeline
pipe = PipelineController(target_project= "pipeline-demo", default_execution_queue='128RAMv100', add_pipeline_tags=False)

` pipe.add_step(name='predict', base_task_id...

3 years ago
0 Hi All, I'M Trying To Use Cuml With Clearml And Am Curious If Anyone Has Encountered Running The Rapids Image On A Privately Hosted Clearml Agent Before? I Set Clearml_Agent_Pip_Venv_Install=/Opt/Conda/Envs/Rapids/Bin/Python As A Flag Inside Task.Set_Base

Same error without the VENV_DIR variable. oops sorry typo it was already double spaced

task.set_base_docker("<image> -e CLEARML_AGENT_SKIP_PIP_VENV_INSTALL=/opt/conda/envs/rapids/bin/python -e CLEARML_AGENT__AGENT__PACKAGE_MANAGER__TYPE=conda")

2 years ago
0 Hi All, I'M Trying To Use Cuml With Clearml And Am Curious If Anyone Has Encountered Running The Rapids Image On A Privately Hosted Clearml Agent Before? I Set Clearml_Agent_Pip_Venv_Install=/Opt/Conda/Envs/Rapids/Bin/Python As A Flag Inside Task.Set_Base

Ahh okay this was the specific replication of the environment
task.set_base_docker("rapidsai/rapidsai-dev:21.10-cuda11.0-devel-ubuntu18.04-py3.8 -e CLEARML_AGENT_SKIP_PIP_VENV_INSTALL=/opt/conda/envs/rapids/bin/python -e CLEARML_AGENT__AGENT__PACKAGE_MANAGER__TYPE=conda")

ideally the code should be able to import cuml

2 years ago
0 Hi Guys, Just Wondering If Anyone Encountered This Error When Using The Pipeline Controller Object. I Simply Added A Step With The Step-Name And Base_Task_Id As Flags.

Hmm that's strange... AgitatedDove14 i'm using the 1.0.5 pypi package as well as the most recent server from this command - curl https://raw.githubusercontent.com/allegroai/trains-server/master/docker/docker-compose.yml -o docker-compose.yml (iirc it should be 1.1.1)

3 years ago
0 Clearml_Agent: Error: Command '['/Root/.Clearml/Venvs-Builds/3.8/Bin/Python', '-M', 'Pip', '--Disable-Pip-Version-Check', 'Install', '-R', '/Tmp/Requirements_Hhemiomd.Txt']' Died With <Signals.Sigkill: 9>.

CostlyOstrich36 ahhh i suspect the error might be coming from using a cached repository? e.g. Using cached repository in "/root/.clearml/vcs-cache/<my repository> it seems like it is trying to install the requirements.txt that was cached but isnt available anymore and there are occasions where the installed packages do not reflect a complete list of what was specified in the repository's requirements.txt. Could this be a possibility for the error (either not detecting the complete list...

3 years ago
0 Hi Guys, Just Wondering If Anyone Encountered This Error When Using The Pipeline Controller Object. I Simply Added A Step With The Step-Name And Base_Task_Id As Flags.

oh ahahah you meant the sdk right? yea i noticed some new pipeline functionalities...was gonna wait for an official release but yea sure i will try it. Thanks mate!

3 years ago
0 Hi All, I'M Trying To Use Cuml With Clearml And Am Curious If Anyone Has Encountered Running The Rapids Image On A Privately Hosted Clearml Agent Before? I Set Clearml_Agent_Pip_Venv_Install=/Opt/Conda/Envs/Rapids/Bin/Python As A Flag Inside Task.Set_Base

mmm are there any methods to approach this (toggling between pip and conda mode) at the code level? i'm actually not allowed to reconfigure the agents as a developer-user.

2 years ago
0 Hi All, I'M Trying To Use Cuml With Clearml And Am Curious If Anyone Has Encountered Running The Rapids Image On A Privately Hosted Clearml Agent Before? I Set Clearml_Agent_Pip_Venv_Install=/Opt/Conda/Envs/Rapids/Bin/Python As A Flag Inside Task.Set_Base

hmmm unfortunately it isn't as straightforward...installing it on python-pip throws this exception - Exception: Please install cuml via the rapidsai conda channel. See https://rapids.ai/start.html for instructions.

2 years ago
Show more results compactanswers