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 one month ago

Reputation

0

Badges 1

35 × Eureka!
0 Votes
17 Answers
593 Views
0 Votes 17 Answers 593 Views
2 years ago
0 Votes
6 Answers
614 Views
0 Votes 6 Answers 614 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
3 Answers
602 Views
0 Votes 3 Answers 602 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
0 Answers
719 Views
0 Votes 0 Answers 719 Views
congrats! https://github.com/ultralytics/yolov5/tree/master/utils/loggers/clearml
one year ago
0 Votes
15 Answers
644 Views
0 Votes 15 Answers 644 Views
2 years ago
0 Votes
18 Answers
624 Views
0 Votes 18 Answers 624 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 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...
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

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

for example I had to do a OPENBLAS="$(brew --prefix openblas)" pip install pandas to be able to install pandas on my M1 MAC

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

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 Everyone, I Have A Bit Of A Vague Problem. My Code Used To Work Fine But All Of A Sudden It Broke Down. When I Run An Experiment Now, It Just Stops Execution Without Returning Any Errors. After Some Searching, I Found Out That The Code Never Proceeds

where is the dataset stored? maybe you deleted the credentials by mistake? or maybe you are not installing the libraries needed (for example if using AWS you need boto3, if GCP you need google-cloud-storage)

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 Trying To Access The Csv File Uploaded On The Clearml Dataset In My Local Device Is Giving Me Some Errors

just do:
import os.path as op dataset_folder = Dataset.get(dataset_id="...").get_local_copy() csv_file = op.join(dataset_folder, 'salary.csv')

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

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

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

so I removed the entrypoint, and now I can see that it tries to install the packages, but it fails because it can’t download the repo

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

great! and I saw that there were some system packages needed for opencv that were installed automatically that could be turned off. Now I’m just wondering if I could remove the PIP install at the very beginning, so it starts straightaway

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 Running An Experiment As Follows:

Thanks TimelyPenguin76 for your answer! So indeed it was mounting it, and how do I check that “CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL” is working in my agent in docker?

one year 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 Running An Experiment As Follows:

right, but it’d still try to install it

one year ago
Show more results compactanswers