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
SourSpider22
Moderator
8 Questions, 30 Answers
  Active since 29 August 2024
  Last activity 11 months ago

Reputation

0

Badges 1

30 × Eureka!
0 Votes
1 Answers
695 Views
0 Votes 1 Answers 695 Views
Is there a way to reset the clearml workspace?
12 months ago
0 Votes
14 Answers
919 Views
0 Votes 14 Answers 919 Views
Hi people, i cant force deleting datasets It tells me StorageError: Can't find azure configuration for None I wanna just force it and delete the folders in a...
12 months ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
Another question, is it possible to visualize bboxes when uploading the dataset in YOLO format? Thanks
one year ago
0 Votes
9 Answers
979 Views
0 Votes 9 Answers 979 Views
11 months ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
Hi people When I try to use docker agents they fail. If I run the command clearml-agent daemon --gpus 0 --queue default --foreground inside a docker prepared...
11 months ago
0 Votes
10 Answers
995 Views
0 Votes 10 Answers 995 Views
Hi! I'm trying to set up Clear ML, I don't know how to setup Azure container storage, for some reason it raises errors. I tried this None But it continues up...
one year ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
11 months ago
0 Votes
1 Answers
883 Views
0 Votes 1 Answers 883 Views
Hi people! I would like to know how to delete old corrupted batches or projects I have errors in the web like Error 406 : Project has associated non-empty da...
one year ago
0 Another Question, Is It Possible To Visualize Bboxes When Uploading The Dataset In Yolo Format? Thanks

@<1523701070390366208:profile|CostlyOstrich36> It looks great, but I would like to know specifically if it can read the bounding boxes in Yolo format (which is the images and labels folder separated, and labels in .txt format one label file for each image with the same name)
None

one year ago
0 Hi! I'M Trying To Set Up Clear Ml, I Don'T Know How To Setup Azure Container Storage, For Some Reason It Raises Errors. I Tried This
> clearml-data sync --project yolo_test --name test1 --folder test1
clearml-data - Dataset Management & Versioning CLI
Creating a new dataset:
2024-08-27 11:58:26,131 - clearml.storage - ERROR - Exception encountered while uploading Failed uploading object /yolo_test/.datasets/test1/test1.9a02f7a3a5924fadbbe0c4b827deafe0/artifacts/state/state.json (405): <html>
<head><title>405 Not Allowed</title></head>
<body>
<center><h1>405 Not Allowed</h1></center>
<hr><center>nginx/1.24.0</center>
...
one year ago
0 Hi! I'M Trying To Set Up Clear Ml, I Don'T Know How To Setup Azure Container Storage, For Some Reason It Raises Errors. I Tried This

I added these lines in the config file

api {
    # Notice: 'host' is the api server (default port 8008), not the web server.
    api_server: 

    web_server: 

    files_server: 

}
....
 azure.storage {
        # max_connections: 2

         containers: [
             {
                 account_name: "account_name"
                 account_key: "***"
                  container_name: "container_name"
             }
         ]
    }
one year ago
0 Hi! I'M Trying To Set Up Clear Ml, I Don'T Know How To Setup Azure Container Storage, For Some Reason It Raises Errors. I Tried This

@<1523701070390366208:profile|CostlyOstrich36>
Thanks for your help! I will try to solve it with that

one year ago
0 Hi People, I Cant Force Deleting Datasets It Tells Me Storageerror: Can'T Find Azure Configuration For

I have permissions, I deleted some datasets
But there are some of them that gives me that error

12 months ago
0 Hi People, I Cant Force Deleting Datasets It Tells Me Storageerror: Can'T Find Azure Configuration For

Now it tells me No projects were found with name(s): hme_vehicle_detection/.datasets/test1

12 months ago
0 Hi People, I Cant Force Deleting Datasets It Tells Me Storageerror: Can'T Find Azure Configuration For

Im doing this
Dataset.delete(
dataset_project="hme_vehicle_detection",
dataset_name="test1",
force=True,
entire_dataset=True,
delete_files=False
)
And I deleted the hole azure clearml folder

12 months ago
12 months ago
0 Hi People, I Cant Force Deleting Datasets It Tells Me Storageerror: Can'T Find Azure Configuration For

dataset_id = "..."
Dataset.get(
dataset_id = dataset_id
)
Dataset.delete(
dataset_id = dataset_id,
force=True,
entire_dataset=True,
delete_files=False,
delete_external_files=False
)

12 months ago
0 Hi People, I Cant Force Deleting Datasets It Tells Me Storageerror: Can'T Find Azure Configuration For

Now it tells me 🫠

Storage helper problem for clearml/vehicle_detection/.datasets/round1/round1.452107f4e6784d77be9b9c4143255579/artifacts/state/state.json: Operation returned an invalid status 'The specified blob does not exist.'
ErrorCode:BlobNotFound
Could not get dataset with ID 452107f4e6784d77be9b9c4143255579: Could not load Dataset id=452107f4e6784d77be9b9c4143255579 state
12 months ago
0 Hi People When I Try To Use Docker Agents They Fail. If I Run The Command Clearml-Agent Daemon --Gpus 0 --Queue Default --Foreground Inside A Docker Prepared With All The Requirements Installed. It Tells Me:

This is the last situation
I could create a docker that works

FROM pytorch/pytorch:2.2.1-cuda12.1-cudnn8-runtime

WORKDIR /app

# Install system dependencies
RUN apt-get update && apt-get install -y \
    libgl1-mesa-glx \
    libglib2.0-0 \
    git \
    curl\
    && rm -rf /var/lib/apt/lists/*

# Install dependencies
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt

# Update CA certificates
COPY hme_root_CA.crt /usr/local/share/ca-cer...
11 months ago
0 Hi People When I Try To Use Docker Agents They Fail. If I Run The Command Clearml-Agent Daemon --Gpus 0 --Queue Default --Foreground Inside A Docker Prepared With All The Requirements Installed. It Tells Me:

@<1576381444509405184:profile|ManiacalLizard2>
I changhed that
But it continues trying to install the next packages:

The following additional packages will be installed:                                                      
  binutils binutils-common binutils-x86-64-linux-gnu build-essential cpp cpp-9                            
  dpkg-dev fakeroot file g++ g++-9 gcc gcc-9 gcc-9-base git-man krb5-locales                              
  less libalgorithm-diff-perl libalgorithm-diff-xs-p...
11 months ago
11 months ago
0 Hi People When I Try To Use Docker Agents They Fail. If I Run The Command Clearml-Agent Daemon --Gpus 0 --Queue Default --Foreground Inside A Docker Prepared With All The Requirements Installed. It Tells Me:

Hi @<1576381444509405184:profile|ManiacalLizard2> at the end we make it works
It has a lot of warning but is able to run the experiments hahaha
Thanks for your help

11 months ago
0 Hi People, I Cant Force Deleting Datasets It Tells Me Storageerror: Can'T Find Azure Configuration For

Dataset.delete(
dataset_id="708f4e2bb4354d58b79916a3db7f04c7",
force=True,
)
Used

12 months ago
0 Hi Everyone, Now This Is Happening: I Decided To Use The Default Clearml.Conf File, And I Try To Run The Agents Using Clearml-Agent Daemon --Queue Default --Docker --Foreground So, As It Is Default I Expect It To Be Able To Install Everything But Always H

It works if i enter to the /bin/bash of the docker and run
clearml-agent daemon --queue default --foreground

But if I want to use in the local machine
clearml-agent daemon --queue default --docker --foreground
Setting the same docker works before
In that case, the problem appears and the programs get stuck

11 months ago
11 months ago
0 Hi People Im Tryng To Install A Worker In A Training Machine I Cant Install Clearml In The Local Environment, I Can Install Clearml And Clearml-Agemt And Run The Worker Inside A Docker But I'M Facing Some Problems I Have A File .Crt But For More That I Co

──────────────────────────────────────────────────────────────────────────────────────────────────────────
sdk.apply_environment = false [50/1825]
sdk.apply_files = false

Executing task id [6e73e0db9cb14aa8b91e0a5439a5aac0]:
repository =
branch =
version_num =
tag =
docker_cmd =
entry_point = train_clearml.py
working_dir = .

created virtual environment CPython3.10.13.final.0-64 in 151ms
creator CPython3Posix(dest=/root/.cl...

11 months ago
0 Hi People Im Tryng To Install A Worker In A Training Machine I Cant Install Clearml In The Local Environment, I Can Install Clearml And Clearml-Agemt And Run The Worker Inside A Docker But I'M Facing Some Problems I Have A File .Crt But For More That I Co

Hi @<1523701205467926528:profile|AgitatedDove14> thanks!
I talked with my boss and i could install clearml-agent directly in the training machine
But now when I try to run an experiment using clearml-agent daemon --gpus 0 --queue default --foreground --docker
It gets stall in this part

Installing collected packages: attrs, rpds-py, zipp, importlib-resources, referencing, jsonschema-specifications, pkgutil-resolve-name, jsonschema, psutil, six, filelock, distlib, platformdirs, virtual...
11 months ago
0 Hi People Im Tryng To Install A Worker In A Training Machine I Cant Install Clearml In The Local Environment, I Can Install Clearml And Clearml-Agemt And Run The Worker Inside A Docker But I'M Facing Some Problems I Have A File .Crt But For More That I Co
This is the docker i created and it is not working
FROM pytorch/pytorch:2.2.1-cuda12.1-cudnn8-runtime

WORKDIR /app

# Install system dependencies
RUN apt-get update && apt-get install -y \
    libgl1-mesa-glx \
    libglib2.0-0 \
    git \
    && rm -rf /var/lib/apt/lists/*

# Install dependencies
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt

# Update CA certificates
COPY hme_root_CA.crt /usr/local/share/ca-certificates/company_roo...
11 months ago
0 Hi Everyone, Now This Is Happening: I Decided To Use The Default Clearml.Conf File, And I Try To Run The Agents Using Clearml-Agent Daemon --Queue Default --Docker --Foreground So, As It Is Default I Expect It To Be Able To Install Everything But Always H

other logs when it installs

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: pi...
11 months ago