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 25 days ago

Reputation

0

Badges 1

35 × Eureka!
0 Votes
0 Answers
689 Views
0 Votes 0 Answers 689 Views
congrats! https://github.com/ultralytics/yolov5/tree/master/utils/loggers/clearml
one year ago
0 Votes
6 Answers
594 Views
0 Votes 6 Answers 594 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...
11 months ago
0 Votes
18 Answers
600 Views
0 Votes 18 Answers 600 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 ...
one year ago
0 Votes
3 Answers
567 Views
0 Votes 3 Answers 567 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...
11 months ago
0 Votes
17 Answers
577 Views
0 Votes 17 Answers 577 Views
2 years ago
0 Votes
15 Answers
627 Views
0 Votes 15 Answers 627 Views
2 years ago
0 Hi! I’M Running An Experiment As Follows:

the problem was docker, that had as entrypoint a bash script with python train.py --epochs=300 hardcoded, so I guess it was never acutally running the task setup from clearml.

one year ago
0 Hi! I’M Running An Experiment As Follows:

not that much, I was just wondering if it was possible :-)

one year 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?

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

would it be possible to change de dataset.add_files to some function that moves your files to a common folder (local or cloud), and then use the last step in the dag to create the dataset using that folder?

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 Have A Dataset Like This: V1.0.0

if I squash, this will rewrite the datasets, right? I want a new dataset, but keeping those there

11 months ago
0 Hi! I Have A Dataset Like This: V1.0.0

that depends…would that only keep the latest version of each file?

11 months 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.

11 months 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

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

so when inside the docker, I don’t see the git repo and that’s why ClearML doesn’t see it

11 months 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 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

right, I’m saying I had to do that in my MAC. In your case you would have to point it to somewhere else. Please check where openblas is installed on your ubuntu

one year 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)

one year ago
0 Hey, How Can I Change Any Environment Variable Of Clearml? I Specifically Want To Change The Location Of The Clearml.Conf File Via The Environment Variable.

but it would only be affecting that session in the terminal…so you would want to add it to your .bashrc

one year 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

line 120 says unmark to enable venv caching (it comes commented by default, but since I’m copying my conf it isn’t commented there)

one year 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

also I suggested to change TMPDIR env variable, since /tmp/ didn’t have a lot of space.

agent.environment.TMPDIR = ****

is it ok to see * ** * instead of the actual path?

one year ago
0 I'M New To Using Datasets, If My Git Project Root Is

ClearML downloads/caches datasets to ~/.clearml/ folder so yes, you need to modify your code.
dataset_folder = Dataset.get(project_name=, dataset_name=, version=).get_local_copy() file_json_path = os.path.join(dataset_folder, 'file.json')

one year ago
0 I'M New To Using Datasets, If My Git Project Root Is

Is not direcly cached in the ~/.clearml folder. There are some directories inside (one for storage, one for pip, another for venvs, etc.

So in your case it would be stored in ~/.clearml/cache/storage_manager/datasets/ds_{ds_id}/my_file.json

one year ago
0 I'M New To Using Datasets, If My Git Project Root Is

I’m afaid I don’t think there is a way to go around this without modifying your code.

one year ago
0 I'M New To Using Datasets, If My Git Project Root Is

you would, but I’d advise against it, since that is not the intended way

one year ago
Show more results compactanswers