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
JumpyRabbit71
Moderator
2 Questions, 10 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

10 × Eureka!
0 Votes
9 Answers
639 Views
0 Votes 9 Answers 639 Views
Hey, I am following the docs to use clearml-session and getting the following error > Environment setup completed successfully > > Starting Task Execution: >...
one year ago
0 Votes
8 Answers
633 Views
0 Votes 8 Answers 633 Views
one year ago
0 Hey, I Am Following The Docs To Use Clearml-Session And Getting The Following Error

@<1523701087100473344:profile|SuccessfulKoala55> I added some extra logs. Does this help to understand whats going on?

one year ago
0 Hey, I Am Following The Docs To Use Clearml-Session And Getting The Following Error

@<1523701087100473344:profile|SuccessfulKoala55> are there any other infos that would help to get a picture of what is happening? Does the agent need any special configuration to be able to run a clearml-session?

one year ago
0 Hey, I Am Following The Docs To Use Clearml-Session And Getting The Following Error
Adding venv into cache: /home/clearml/.clearml/venvs-builds/3.8
Running task id [...]:
[.]$ /home/clearml/.clearml/venvs-builds/3.8/bin/python -u /home/clearml/.clearml/venvs-builds/3.8/code/interactive_session.py
Summary - installed python packages:
pip:
- Cython==0.29.34
Environment setup completed successfully
Starting Task Execution:
Traceback (most recent call last):
  File "/home/clearml/.clearml/venvs-builds/3.8/code/interactive_session.py", line 372, in <module>
    import psuti...
one year ago
0 Hey, I Am Following The Docs To Use Clearml-Session And Getting The Following Error

Hi @<1523701087100473344:profile|SuccessfulKoala55> Im using hosted clearml, only the agent is self hosted on a local machine. I have used that setup to train on the agent without problem. Only when trying session that issue occurs

one year ago
0 Hey, Im Trying To Run Some Example Pipelines But Have The Problem, That Inside The Steps No Requirements Are Installed. In The Controller Task Itself All Requirements From The Repo Requirements.Txt Are Installed But In The Steps Only Cython. Are The Steps

` from clearml import PipelineController

pipe = PipelineController(
name="Test Pipeline Controller",
project="test_pipelines",
version="1.0.0"
)

pipe.set_default_execution_queue('cpu')

pipe.add_parameter(
name='test_parameter',
description='just a random number for testing',
default='42'
)

def step_one(test_parameter):
return int(test_parameter) * 2

def step_two(new_number):
return int(new_number) * 2

pipe.add_function_step(
name='step_one',
...

one year ago
0 Hey, I Am Following The Docs To Use Clearml-Session And Getting The Following Error
clearml-session

tried with some flags for requirements and git-credentials but that didn't change anything.

one year ago
0 Hey, I Am Following The Docs To Use Clearml-Session And Getting The Following Error
[package_manager.force_repo_requirements_txt=true] Skipping requirements, using repository "requirements.txt" 
created virtual environment CPython3.8.10.final.0-64 in 101ms
  creator CPython3Posix(dest=/home/clearml/.clearml/venvs-builds/3.8, clear=False, no_vcs_ignore=False, global=False)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/clearml/.local/share/virtualenv)
    added seed packages: pip==23.0.1, setuptools==67.6.1...
one year ago