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

Reputation

0

Badges 1

18 × Eureka!
0 Votes
9 Answers
558 Views
0 Votes 9 Answers 558 Views
Hello, I have a local install using the docker compose approach. I'm trying to set default_output_uri in /opt/clearml.conf and it's ignored. I also tried to ...
one year ago
0 Votes
7 Answers
598 Views
0 Votes 7 Answers 598 Views
one year ago
0 Votes
7 Answers
655 Views
0 Votes 7 Answers 655 Views
Hello all! Quick question, do any of you know of a clean way to access the ClearML logger inside of a pl.LightningModule or even better to get rid of the Ten...
one year ago
0 Votes
13 Answers
661 Views
0 Votes 13 Answers 661 Views
one year ago
0 Votes
3 Answers
662 Views
0 Votes 3 Answers 662 Views
Hello everyone! First, thanks a lot to everyone that made ClearML possible, I've been looking for a tool like that for years. I just installed the open sourc...
one year ago
0 Hello, I Have A Local Install Using The Docker Compose Approach. I'M Trying To Set

I tested ~/clearml.conf and CLEARML_DEFAULT_OUTPUT_URI , they are both ignored.

Maybe for more context, I'm using https://github.com/allegroai/clearml/blob/master/examples/frameworks/pytorch-lightning/pytorch_lightning_example.py to test and the only way I can have the model checkpoints uploaded to the server is if I set output_uri in the Task.init .

I base the assumption that I should not have to do that on the following comment from ~/clearml.conf .

` # Defau...

one year ago
0 Hello, I Have A Local Install Using The Docker Compose Approach. I'M Trying To Set

Ah ok, thanks. I was hoping to be able to set the default server-wide and not have to tell all users to do it themselves in the code.

Actually, when you say client side, it means it should work in ~/clearml.conf no?

one year ago
0 Hello, I Have A Local Install Using The Docker Compose Approach. I'M Trying To Set

exactly. it's saved in a lightning_logs folder where i started the script instead.

one year ago
0 Hello, I Have A Local Install Using The Docker Compose Approach. I'M Trying To Set

Apologies, the error on my side. It's working.

Thanks a lot!

one year ago
0 Hello! I Have A Quick Question About The Clearml Hyperparameter Optimizations Module. Is It Possible To Use It Without Using The Clearml Agent System? In Other Words, Launch A Script From A Few Machines Manually But The Hyperparameters Are Given From Cle

Great! Thank you

If I understand correctly that means many of the arguments in HyperParameterOptimizer become meaningless right?
execution_queue is not relevent anymore
total_max_jobs is determined by how many machine I launch the script
same for max_number_of_concurrent_tasks ?

Maybe to clarify, I was looking for something with the more classic Ask-and-Tell interface
https://optuna.readthedocs.io/en/stable/tutorial/20_recipes/009_ask_and_tell.html
https://scikit-optim...

one year ago
0 Hello Everyone! First, Thanks A Lot To Everyone That Made Clearml Possible, I'Ve Been Looking For A Tool Like That For Years. I Just Installed The Open Source Server (

Thanks a lot for the quick and clear answer!
I'm in a weird constrained setup with a NSF mount for /opt/clearml where I can't change the permissions easily but thanks for your answer. I'll contact people on my side to change the permissions instead of recompiling. This one still is quite confusing to me. I did what you suggested. I also created the credential in localhost:8080/settings/workspace-configuration and set it properly in /opt/clearml.conf . I tested with permission root...

one year ago
0 Hello! I Have A Quick Question About The Clearml Hyperparameter Optimizations Module. Is It Possible To Use It Without Using The Clearml Agent System? In Other Words, Launch A Script From A Few Machines Manually But The Hyperparameters Are Given From Cle

Yeah, I think I understand. The thing I was missing is that I wanted to not use the agent and just call my code directly.
That's not possible, right?
I really need to have a dummy experiment pre-made and have the agent clone the code, set up the env and run everything?

one year ago
0 Hello All! Quick Question, Do Any Of You Know Of A Clean Way To Access The Clearml Logger Inside Of A

That being said it returns none for me when I reload a task but it's probably something on my side.

one year ago
0 Hello All! Quick Question, Do Any Of You Know Of A Clean Way To Access The Clearml Logger Inside Of A

Great, thank you. I was wondering if it was the recommended way but seems like it is.

one year ago
0 Hello All! Quick Question, Do Any Of You Know Of A Clean Way To Access The Clearml Logger Inside Of A

I did not, I assumed that Task.init was mostly to initialize a new task and Task.get_task was to load an existing one but it seems I was wrong.

I ended up using task = Task.init( continue_last_task =task_id) to reload a specific task and it seems to work well so far.

Thanks

one year ago
0 Hello All! Quick Question, Do Any Of You Know Of A Clean Way To Access The Clearml Logger Inside Of A

I did a simple test outside of the pl.LightningModule and it seems like it's not returning anything even there. I'm probably missing something obvious.

one year ago
0 Please Tell Me, Is The Limit Of 10 Copies For Comparison, Is It Ideological Or Can It Be Changed Somehow?

Quick follow-up on this topic.

Has the "compare more than 10 run" feature been added in the past 2 months? I can't find any info about this.

one year ago
0 Hello! I'M Trying To Make A Simple Eval.Py Script That Will Go Pull The Best Model Of A Given Experiment, Load It Locally And Evaluate It On Whatever Data I Give. Question 1: Is There A Standard Way Documented Somewhere To Do This? Question 2: I'M Loadin

For now, I retrieve and load the model as follows (pytorch lightning)clearml_model = task.models['output'][-1] model_path = clearml_model.get_local_copy() main_loop = LightningModel.load_from_checkpoint(checkpoint_path=model_path)
Not sure how InputModel would help and task.get_models() is always empty.

one year ago
0 Hello! I'M Trying To Make A Simple Eval.Py Script That Will Go Pull The Best Model Of A Given Experiment, Load It Locally And Evaluate It On Whatever Data I Give. Question 1: Is There A Standard Way Documented Somewhere To Do This? Question 2: I'M Loadin

I'm assuming it's in a later version than 1.7.1 (the one I'm running).

But I guess for my question #1 I was doing it fine. Do you have any idea for #2?
Old bug and I should update maybe?

one year ago