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
RattyBluewhale45
Moderator
6 Questions, 91 Answers
  Active since 13 August 2024
  Last activity one month ago

Reputation

0

Badges 1

89 × Eureka!
0 Votes
5 Answers
117 Views
0 Votes 5 Answers 117 Views
Hello! I get this error when running multiple jobs on the same dataset, would someone be able to help debug?: FileNotFoundError: Image Not Found /clearml_age...
2 months ago
0 Votes
13 Answers
124 Views
0 Votes 13 Answers 124 Views
Hello! Are you able to help be debug this message? RuntimeError: unable to write to file : No space left on device (28) 2024-09-09 14:29:50,124 - clearml.rep...
one month ago
0 Votes
23 Answers
175 Views
0 Votes 23 Answers 175 Views
Hello! My Workers Utilization is empty and not showing any graphs. Do you know how I can troubleshoot this?
2 months ago
0 Votes
29 Answers
204 Views
0 Votes 29 Answers 204 Views
2 months ago
0 Votes
8 Answers
177 Views
0 Votes 8 Answers 177 Views
Hello! I am having a dependency issue with clearml. Would someone be able to help me understand how to debug it/replicate it? from ultralytics import YOLO Im...
2 months ago
0 Votes
41 Answers
6K Views
0 Votes 41 Answers 6K Views
2 months ago
0 Hello! I Get This Error When Running Multiple Jobs On The Same Dataset, Would Someone Be Able To Help Debug?:

We are getting the dataset like this:

clearml_dataset = Dataset.get(
    dataset_id=config.get("dataset_id"), alias=config.get("dataset_alias")
)
dataset_dir = clearml_dataset.get_local_copy()
2 months ago
0 Hello! I Get This Error When Running Multiple Jobs On The Same Dataset, Would Someone Be Able To Help Debug?:

I think it might be related to the new run overwriting in this location

2 months ago
2 months ago
0 Hello! Are You Able To Help Be Debug This Message?

Code to enqueue

from clearml import Task

task = Task.create(
    script="script.py",
    docker="ultralytics/ultralytics:latest",
    docker_args=["--network=host", "--ipc=host", "--shm_size=55G"],
)

task.enqueue(task, "default")
one month ago
one month ago
0 Hello! Are You Able To Help Be Debug This Message?
ERROR: Unexpected bus error encountered in worker. This might be caused by insufficient shared memory (shm).
�Traceback (most recent call last):
  File "/root/.clearml/venvs-builds/3.10/task_repository/script.py", line 36, in <module>
Traceback (most recent call last):
  File "/opt/conda/lib/python3.10/multiprocessing/queues.py", line 244, in _feed
    obj = _ForkingPickler.dumps(obj)
  File "/opt/conda/lib/python3.10/multiprocessing/reduction.py", line 51, in dumps
    cls(buf, protoco...
one month ago
0 Hello! Are You Able To Help Be Debug This Message?

Setting ultralytics workers=0 seems to work as per the thread above!

one month ago
0 Hello! Are You Able To Help Be Debug This Message?

Although that's not ideal as it turns off CPU parallelisation

one month ago
0 Hello! I Am Having A Dependency Issue With Clearml. Would Someone Be Able To Help Me Understand How To Debug It/Replicate It?

@<1717350332247314432:profile|WittySeal70> what's strange is I can import the package in the docker container when I run it outside of clearML

2 months ago
0 Hello! I Am Having A Dependency Issue With Clearml. Would Someone Be Able To Help Me Understand How To Debug It/Replicate It?

Final answer was

    docker="ultralytics/ultralytics:latest",
    docker_args=["--network=host", "--ipc=host"],
2 months ago
0 Hello! I Am Having A Dependency Issue With Clearml. Would Someone Be Able To Help Me Understand How To Debug It/Replicate It?

pip install ultralytics --no-deps would also work. Is there a way to pass this to clearML?

2 months ago
0 Hello! Are You Able To Help Be Debug This Message?

@<1523701070390366208:profile|CostlyOstrich36> I don't think it's related to disk, I think it's related to shm

one month ago
0 Hello! Are You Able To Help Be Debug This Message?

It did work on clearml on prem with docker_args=["--network=host", "--ipc=host"]

one month ago
one month ago
one month ago
0 Hello! I Have An Issue Reproducing My Runs. The Task.Create Completes Successfully. When I Clone And Enqueue A Completed Task The Clone Fails. It Fails During The Python Requirements Installation. Why Is This? Do You Know How I Can Debug? Thank You In Adv
WARNING:clearml_agent.helper.package.requirements:Local file not found [torch-tensorrt @ file:///opt/pytorch/torch_tensorrt/py/dist/torch_tensorrt-1.3.0a0-cp38-cp38-linux_x86_64.whl], references removed
2 months ago
0 Hello! I Have An Issue Reproducing My Runs. The Task.Create Completes Successfully. When I Clone And Enqueue A Completed Task The Clone Fails. It Fails During The Python Requirements Installation. Why Is This? Do You Know How I Can Debug? Thank You In Adv
DEBUG   Installing build dependencies ... [?25l- \ | / - done
[?25h  Getting requirements to build wheel ... [?25l- error
  [1;31merror[0m: [1msubprocess-exited-with-error[0m
  
  [31m×[0m [32mGetting requirements to build wheel[0m did not run successfully.
  [31m│[0m exit code: [1;36m1[0m
  [31m╰─>[0m [31m[21 lines of output][0m
  [31m   [0m Traceback (most recent call last):
  [31m   [0m   File "/root/.clearml/venvs-builds/3.8/lib/python3.8/site-packages/pip/_vendor/pyproject_hooks/_i...
2 months ago
0 Hello! I Have An Issue Reproducing My Runs. The Task.Create Completes Successfully. When I Clone And Enqueue A Completed Task The Clone Fails. It Fails During The Python Requirements Installation. Why Is This? Do You Know How I Can Debug? Thank You In Adv

Maybe it's related to this section?

WARNING:clearml_agent.helper.package.requirements:Local file not found [anaconda-anon-usage @ file:///croot/anaconda-anon-usage_1710965072196/work], references removed
2 months ago
0 Hey Guys! I'M Having Some Issues With Pytorch And Clearml. I Am Starting A New Task Using Task.Create And Setting Pytorch As A Requirement Under `Packages`. For Some Reason Pytorch With Cuda 12 Is Being Installed, But I Need Cuda 11. Do You Know How To Se

Collecting pip<20.2
Using cached pip-20.1.1-py2.py3-none-any.whl (1.5 MB)
Installing collected packages: pip
Attempting uninstall: pip
Found existing installation: pip 20.0.2
Not uninstalling pip at /usr/lib/python3/dist-packages, outside environment /usr
Can't uninstall 'pip'. No files were found to uninstall.

2 months ago
Show more results compactanswers