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

Reputation

0

Badges 1

22 × Eureka!
0 Votes
3 Answers
607 Views
0 Votes 3 Answers 607 Views
Hi everyone! Does ClearML logs everything that Tensorboard generates? Tensorboard creates a graph of the neural network and would be nice to have it on the e...
one year ago
0 Votes
2 Answers
611 Views
0 Votes 2 Answers 611 Views
one year ago
0 Votes
3 Answers
688 Views
0 Votes 3 Answers 688 Views
one year ago
0 Votes
3 Answers
607 Views
0 Votes 3 Answers 607 Views
I'm having a problem reusing the last task id on jupyter notebooks. Dispite having reuse_last_task_id=True on Task.init, it always creates a new task id. Any...
one year ago
0 Votes
1 Answers
616 Views
0 Votes 1 Answers 616 Views
Hi everyone! Just a simple curiosity: Is the clearml-server docker image built on amd64 only? No arm64 support?
one year ago
0 Votes
7 Answers
634 Views
0 Votes 7 Answers 634 Views
Hii guys, So I've got a question about about Agents using SSH connection. In the docs (here https://clear.ml/docs/latest/docs/clearml_agent/#spinning-up-an-a...
one year ago
0 Votes
22 Answers
652 Views
0 Votes 22 Answers 652 Views
one year ago
0 Hi Everyone! So, I'M Having A Problem With The Auto Detect Dependencies When Running A Task Remotly. The Problem Is That When I Import Some Function From A File In Another Folder, That Task Doesn'T Catch The Files Depencies. Given A Folder Structure:

When running the task locally:
` # Python 3.9.13 (tags/v3.9.13:6de2ca5, May 17 2022, 16:36:42) [MSC v.1929 64 bit (AMD64)]

clearml == 1.8.3 And when running on a remote clearml-agent: attrs==22.1.0
certifi==2022.12.7
charset-normalizer==2.1.1
clearml==1.8.3
Cython==0.29.32
distlib==0.3.6
filelock==3.8.2
furl==2.1.3
idna==3.4
jsonschema==4.17.3
numpy==1.24.0
orderedmultidict==1.0.1
pathlib2==2.3.7.post1
Pillow==9.3.0
platformdirs==2.6.0
psutil==5.9.4
PyJWT==2.4.0
pyparsing==3.0.9
pyrsisten...

one year ago
0 Hi Everyone! So, I'M Having A Problem With The Auto Detect Dependencies When Running A Task Remotly. The Problem Is That When I Import Some Function From A File In Another Folder, That Task Doesn'T Catch The Files Depencies. Given A Folder Structure:

One work around is adding:
import pandas as pd import numpy as npon the main file. This way the depency is properly detected. But idk, it seems like this shouldn't be a problem. Did you guys managed to reproduce the error?

one year ago
one year ago
0 Hi Everyone! So, I'M Having A Problem With The Auto Detect Dependencies When Running A Task Remotly. The Problem Is That When I Import Some Function From A File In Another Folder, That Task Doesn'T Catch The Files Depencies. Given A Folder Structure:

I tried using Task.force_requirements_env_freeze(requirements_file=requirements.txt) , before calling Task.init but it didn't work, the requirements didnt show as installed packages. So I added Task.add_requirements("requirements.txt") and it worked fine. I thinks this is a proper workaround.

one year ago
0 Hi Everyone! So, I'M Having A Problem With The Auto Detect Dependencies When Running A Task Remotly. The Problem Is That When I Import Some Function From A File In Another Folder, That Task Doesn'T Catch The Files Depencies. Given A Folder Structure:

The workaround of importing pandas and numpy is very limited, because once your code.py imports from another files (an utils.py, for example), you can get lost pretty quickly with the libs.

one year ago
0 Hii Guys, So I'Ve Got A Question About About Agents Using Ssh Connection. In The Docs (Here

The error i'm getting is:
cloning: Using SSH credentials - replacing https url ' ' with ssh url ' ' 2022-12-16 14:33:39 fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.However I can successfuly clone the repo on the host vm, so the ssh key should be giving me the permisison.

one year ago
0 Hi Everyone! I'M Trying To Host The Clearml Server On An Vm On Oci, But I'M Having Some Trouble. I'M Using The Always Free Vm.Standard.A1.Flex Arm64 Ubuntu 20.04. When I Spin Up The Docker Compose Serveral Images Keep Eternally Restarting. Anyone Had A Pr

Update: I just launched another instance with ubuntu 20.04 but with amd64 (x86_64), using the same docker compose and it worked just great. Were the docker images built on amd64? Do I need a specific attention when running amd64 images on arm64:

one year ago
0 Hii Guys, So I'Ve Got A Question About About Agents Using Ssh Connection. In The Docs (Here

It still didn't work. I created the ssh keys on the agent with ssh-keygen -C "<user>" , added the public key to bitbucket to allow it, and didn't specified the SSH_AUTH_SOCK now. Am I missing something? Do I need to setup an ssh-agent on host before spinning up the agent?

one year ago
0 Hii Guys, So I'Ve Got A Question About About Agents Using Ssh Connection. In The Docs (Here

This morning I kiled the agent and spinned it up again with --foreground and it worked flawlesly. Then I tried without --foreground and it still worked. I didn't change anything else, weird. When I set up another worker in the future I will keep an eye on it

one year ago
0 Hii Everyone! I'M Having An Issue Using An Agent Without A Gpu. I'M Using It On Docker Mode (To Allow Ssh), I Changed The Default Docker Image On The Config File To Python 3.9.6 But It Seems It Is Still Trying To Use The Nvidia Image. The Error Message G

Managed to fix it. I cloned again the task and it pulled the correct docker image. However it still tried to use GPU. To fix this a had to spin the agent using --cpu-only flag (--docker --cpu-only)

one year ago