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
AbruptCow41
Moderator
6 Questions, 77 Answers
  Active since 10 January 2023
  Last activity 7 months ago

Reputation

0

Badges 1

35 × Eureka!
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
congrats! https://github.com/ultralytics/yolov5/tree/master/utils/loggers/clearml
2 years ago
0 Votes
3 Answers
993 Views
0 Votes 3 Answers 993 Views
Hi! I have a dataset like this: v1.0.0 - file_1.csv - file_2.csvv1.0.1 - file_2.csv - file_3.csvv1.0.2 - file_3.csv - file_4.csvHow can I get a new dataset w...
one year ago
0 Votes
15 Answers
1K Views
0 Votes 15 Answers 1K Views
2 years ago
0 Votes
17 Answers
1K Views
0 Votes 17 Answers 1K Views
2 years ago
0 Votes
18 Answers
1K Views
0 Votes 18 Answers 1K Views
Hi! I’m running an experiment as follows: create argparser -> args Task.init (default args) call train(args)Then I clone it and change the parameters in the ...
2 years ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K Views
Hi! How can I force clearml to find my repo? My current repo structure is like this: - backend - frontend - ml - …Since I work only on the ml folder I launch...
one year ago
0 Hi! How Can I Force Clearml To Find My Repo? My Current Repo Structure Is Like This:

Thanks for the answer. You’re right. I forgot to add that this tasks runs inside a docker container and I’m currently only mapping the $PWD ( ml folder) into /app folder in the container.

one year ago
0 Hey Everyone ! Seems Like I Can Not Run My Task Remotely <- Is Something Missing In The Config (Agent) , Should I Specify All The Versions? I Attach Full Log

if I were to run an agent that would require to install pandas at some point I’d run it:
OPENBLAS="$(brew --prefix openblas)" clearml-agent daemon --queue default

2 years ago
0 Hi! How Can I Force Clearml To Find My Repo? My Current Repo Structure Is Like This:

I could map the root folder of the repo into the container, but that would mean everything ends up in there

one year ago
0 Hi! I’Ve Been Using Clearml For Some Time In My Previous Company, But I Have A New Job Now, And Naturally I Want To Continue Using It And Hopefully Convince My Team Mates! But I Couldn’T Set The Clearml-Server Docker. We Are Discouraged From Using

oh but docker-ps shows me 8081 ports for webserver, apiserver and fileserver containers
` CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
0b3f563d04af allegroai/clearml:latest "/opt/clearml/wrappe…" 7 minutes ago Up 7 minutes 8008/tcp, 8080-8081/tcp, 0.0.0.0:8080->80/tcp, :::8080->80/tcp clear...

2 years ago
0 Hi, I'M Trying To Upload Data To Clearml Parallelly. Is It Impossible To Use

I’m suggesting MagnificentWorm7 to do that yes, instead of adding the files to a ClearML dataset in each step

2 years ago
0 Hi, I'M Trying To Upload Data To Clearml Parallelly. Is It Impossible To Use

That’s why I’m suggesting him to do that 🙂

2 years ago
0 Hi, What Is The Best Way To Get The Agent To Install A Dependency From Github. I Have Tried This In This Sample Script:

but would installing
git+ <user>/rmdatasetsinstall rmdatasets == 0.0.1 ?
Aren’t they redundant?

2 years ago
0 Hi Everyone! I Have A Short Question That You Can For Sure Help Me With. Is There A Way To Avoid Each Task To Create A New Environment? I'D Like To Specify Which Env To Use. I Tried With

To give more context, he is running an hyper params optimization script, that internally clones a base task and runs it with certain params and checks if a metric increases or decreases. It is when the agent tries to run this task that the error raises.

ERROR: Could not install packages due to an EnvironmentError: [Errno 28] No space left on device
clearml_agent: ERROR: Could not install task requirements!
Command '['~/.clearml/venvs-builds/3.8/bin/python', '-m', 'pip', '--disable-pip-v...
2 years ago
0 Hi, What Is The Best Way To Get The Agent To Install A Dependency From Github. I Have Tried This In This Sample Script:

Right, you don’t want ClearML to track that package, but there isn’t much you can do there I believe. I was trying to tackle how to run your code with an agent given those dependencies.
I think that if you clone the experiment, and remove that line in the dependencies sections in the UI you should be able to launch it correctly (as long as your clearml-agent has the correct permissions)
and btw
if " @" in line: line = line.replace(" @", "https://")should be the same as
...

2 years ago
0 Hi! I’M Running An Experiment As Follows:

Thanks for your answer, but it didn’t work 😕

2 years ago
0 Hi! I’M Running An Experiment As Follows:

before the repo was already in the docker, but now it is running the agent inside the docker (so setting a virtualenv, and cloning the repo, and installing the packages)

2 years ago
0 Hello, I'M Following The Tutorial Of

There’s only a jupyter notebook

2 years ago
0 Hi Everyone! I Have A Short Question That You Can For Sure Help Me With. Is There A Way To Avoid Each Task To Create A New Environment? I'D Like To Specify Which Env To Use. I Tried With

I don’t see an agent section there 😕
Can you move your current clearml.conf file to another location and run clearml-agent init ?

2 years ago
0 Hey Everyone ! Seems Like I Can Not Run My Task Remotely <- Is Something Missing In The Config (Agent) , Should I Specify All The Versions? I Attach Full Log

Hi ExasperatedCrocodile76 , I guess that you were able to install Scikit-learn and you were able to run it locally, and now you want to try it with an agent on the same machine.
The error is that it can’t find OpenBLAS:
` Run-time dependency openblas found: NO (tried pkgconfig and cmake)
Run-time dependency openblas found: NO (tried pkgconfig)

../../scipy/meson.build:130:0: ERROR: Dependency "OpenBLAS" not found, tried pkgconfig `My question is: did you export some env variabl...
2 years ago
0 Hello, I'M Following The Tutorial Of

Hi! What the error is saying is that it is looking for the the ctbc/image_classification_CIFAR10.py file in your repo.
So when you created the task you were inside a git repo, and ClearML assumed that all your files in it were commited and pushed. However your repo https://github.com/gradient-ai/PyTorch.git doesn’t contain these files

2 years ago
0 Hi Everyone! I Have A Short Question That You Can For Sure Help Me With. Is There A Way To Avoid Each Task To Create A New Environment? I'D Like To Specify Which Env To Use. I Tried With

I agree, but setting the agent’s env variable TMPDIR didn’t seem to have any effect (check the log above, it is still using /tmp )

2 years ago
0 Hi! Is There A Way To Export The Credentials Of The Aws Account Only During The Creation Of The Docker? I Don’T Want Every User In My Team To Know The Credentials To Access S3 Buckets. I Just Want Them To Be Able To Write In The Bucket Without The Credent

it would be easier for a sysadmin to center the credentials of the bucket in the clearml-server, without the need to distribute them…every user in the server has the same credentials, and they don’t need to know them..makes sense?

2 years ago
Show more results compactanswers