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
ManiacalLizard2
Moderator
40 Questions, 298 Answers
  Active since 05 June 2023
  Last activity 2 months ago

Reputation

0

Badges 1

113 × Eureka!
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Hi, with a given task ID, how do I get all the information of the tab "INFO" in the Python SDK ? I struggle to find that in the doc None
2 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
2 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
2 years ago
0 Votes
1 Answers
937 Views
0 Votes 1 Answers 937 Views
Hi, We have clearml-agent running inside a docker container. The container have all the require package installed including some of our private package. When...
6 months ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
Hi, in our use case, we use multiple github repo from our organization as dependent package. The issue is that github allow only one uniq ssh deploy key per ...
one year ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
@<1523701087100473344:profile|SuccessfulKoala55> I just saw the new release of the agent 1.8.1 : None > Fix git pulling on cached invalid git entry. On error...
one year ago
0 Votes
10 Answers
2K Views
0 Votes 10 Answers 2K Views
Another questions related to requirements.txt We use pip install with git commit. Eg: mylib @ When I do task.add_requirements("requirements.txt") I get # Pyt...
2 years ago
0 Votes
2 Answers
775 Views
0 Votes 2 Answers 775 Views
10 months ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
Hi, I am using mmpretain and wondering how do ClearML integrate with it ? I used: Runner( ..., visualizer=dict(type='Visualizer', vis_backends=[dict(type='Cl...
one year ago
0 Votes
6 Answers
4K Views
0 Votes 6 Answers 4K Views
I want to run clearml sdk to create task (without running it) and upload artifact in a container. I have code to pull clearml API key from Azure Keyvault and...
3 months ago
Show more results questions
0 Another Questions Related To

that format is correct as I can run pip install -r requirements.txt
using the exact same file

2 years ago
0 Hi! I Have Noticed That Clearml-Elastic Container Consumes 32.82Gib Memory. This Seems

Sorry I missed your message: no I don't know what happen when ES reach its RAM limit. We do self-host in Azure and use ES SaaS. Our cloud engineer manage that part.
My only experience was when I tried to spin up my local server, from docker compose, to test something and it took my PC down because ES eat all my RAM !!

7 months ago
0 Question About Pipeline : My Setup Is As Follow:

how does it work if I create my pipeline from code ? Does the task will get the git repo state when first run and use commit hash and uncommited changed as "signature" ?

one year ago
0 I Have Set

normally when new package need to be install, it shows up in the Console tab

one year ago
0 I Have Set

you should be able to see int the Console tab that show what is happening

one year ago
0 I Have Set

We need to focus first on Why is it taking minutes to reach Using env.
In our case, we have a container that have all packages installed straight in the system, no venv in the container. Thus we don't use CLEARML_AGENT_SKIP_PIP_VENV_INSTALL
But then when a task is pulled, I can see all the steps like git clone, a bunch of Requirement already satisfied .... There may be some odd package that need to be installed because one of our DS is experimenting ... But all that we can see what is...

one year ago
0 I Setup A Dedicated Mongo Instance With A

we are not using docker compose. We are deploying in Azure with each database as a standalone service

2 years ago
0 Is There A Way To Tell The Agent To Use A Specific Venv Pre Installed ? Like The One Already Installed In The Developer Pc And The Agent Is Running Inside That Same Pc?

Found a trick to have empty Installed package:
clearml.Task.force_requirements_env_freeze(force=True,requirements_file="/dev/null")
Not sure if this is the right way or not ...

2 years ago
0 We Have This Issue With Our Oss Deployment: One Azure Container App For

will send the nginx -T results once the container is deployed

4 months ago
0 How Does Clearml-Agent Install

Actually, I can set agent.package_manager.pip_version="" in the clearml.conf
And after reading 4x the doc, I can use the env var:
CLEARML_AGENT__AGENT__PACKAGE_MANAGER__PIP_VERSION

9 months ago
0 Hi Everyone! I'Ve Been Using Clearml For A While And I Love It, But I Recently Noticed A Strange Issue. From The "Debug Samples" Tab, Where I Can See Some Training Samples From My Dataset, When I Click On Some Thumbnails The Image I Can See Does Not Match

Just a +1 here. When we use the same name for 3 differents image, the thumbnail show 3 different images, but when clicking on any of them, only one is displayed. No way to display the others

one year ago
0 Can Anyone Recommend A Good Workflow For

what is the difference between vscode via clearml-session and vscode via remote ssh extension ?

2 years ago
0 Hello, I'M Trying To Use The Agent To Orchestrate Tasks - Our Install Is Quite Complicated And I'Ve Wrapped It All Up With The Code In A Docker Container; Is There A Way To Get The Agent To Just Run A Command In The Container Rather Than Try To Build/Inst

in that case yes. What happen is that in docker mode:
you run a clearml agent, that then receive a task
create a container
install another agent inside that container
then run that second agent inside the container
that second agent then pull the task and do the usuall build/install

CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL=true need to be set on that second agent somehow ...

2 years ago
0 Also From The Python Sdk, Is There A Way To Specify The Clearml.Conf File To Use ? Like The Equivalent Of

I understand for cleaml-agent
What I mean is that I have 2 self deployed server. I want to switch between the 2 config when running the code locally, not inside the agent

2 years ago
0 Hi Just To Confirm, I Set My Default Output_Uri To S3, Output_Uri Will Upload Just Artifacs, Console Log, File Server Will Save Plot Images Like Matplotlib/Seaborn. Is It Correct?

Found it: None
And credential are set with :

sdk {      
    azure.storage {
         containers: [
             {
                 account_name: "account"
                 account_key: "xxxx"
                 container_name:"clearml"
             }
         ]
    }
}
2 years ago
0 Hi Just To Confirm, I Set My Default Output_Uri To S3, Output_Uri Will Upload Just Artifacs, Console Log, File Server Will Save Plot Images Like Matplotlib/Seaborn. Is It Correct?

@<1523701070390366208:profile|CostlyOstrich36> I would like to point to azure blob storage, what kind of url schema should I use ? And also, where do you configure the credential for the ClearML server to access to Azure blob as file_server ? I couldn't find any documentation around this topic 😞
TIA

2 years ago
0 Also From The Python Sdk, Is There A Way To Specify The Clearml.Conf File To Use ? Like The Equivalent Of

can you make train1.py use clearml.conf.server1 and train2.py use clearml.conf2 ?? In which case I would be intersted @<1523701087100473344:profile|SuccessfulKoala55>

2 years ago
0 Hello! I Have A Small Question Regarding Storage Data Retrieval With Clearml

Just keep in mind my your bottleneck will be the transfer rate. So mounting will not save you anything as you still need to transfer the whole dataset sooner or later to your GPU instance.
One solution is as Jake suggest. The other can be pre-download the data to your instance with a CPU only cheap instance type, then restart the instance with GPU.

2 years ago
Show more results compactanswers