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
MortifiedDove27
Moderator
6 Questions, 62 Answers
  Active since 10 January 2023
  Last activity 25 days ago

Reputation

0

Badges 1

62 × Eureka!
0 Votes
26 Answers
634 Views
0 Votes 26 Answers 634 Views
2 years ago
0 Votes
19 Answers
574 Views
0 Votes 19 Answers 574 Views
Hi, I am having problem with ClearML running on our private server. This error occured on older version on clearML and server. now after update and purge of ...
one year ago
0 Votes
8 Answers
542 Views
0 Votes 8 Answers 542 Views
Hello, I am using ClearML on my server that is located in Hamachi VPN network with IP 25.x.x.x. ClearML runs in docker with api_server: http://172.x.x.x:8008...
3 years ago
0 Votes
12 Answers
531 Views
0 Votes 12 Answers 531 Views
Hi, I am saving plt chart to ClearML using from torch.utils.tensorboard import SummaryWriter and I got long labels cut out writer.add_figure('my label', figu...
2 years ago
0 Votes
31 Answers
3K Views
0 Votes 31 Answers 3K Views
Hi, I am trying to run experiment from ClearML web ui. I did experiment copy, enqueue, but in the execution log I see that it runs command [.]$ /home/exx/.cl...
2 years ago
0 Votes
25 Answers
539 Views
0 Votes 25 Answers 539 Views
Any ideas 🙂 ?
one year ago
0 Any Ideas

To be more precise - how to clean up and install 🙂

one year ago
0 Any Ideas

CostlyOstrich36 any ideas?

one year ago
0 Any Ideas

I have restarted docker with docker down several times and nothing changes

one year ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

docker has access to all 4 GPUs with --gpus all flag and we specify in config on what cuda device(s) to run, in pytorch we can run more than 2 gpus

2 years ago
2 years ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

Hi AgitatedDove14 !
Thanks for your answers. Now I have a follow up. I was able to successfully run the experiment, copy it in UI and enqueue to default queue and see it complete.

2 years ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

So now I did run with the example and I see hydra tab. Is the the expermient arg that I used to run it?
python hydra_example.py experiment=gm_fl_dcl

2 years ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

here are requirements from the repository that I was able to run hydra_example.py and that I have crash with my custom train.py

2 years ago
2 years ago
2 years ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

task = Task.init(project_name=cfg.project.name, task_name=cfg.project.exp_name) After discussion we have suspicion on using config before initing the task, can it cause any problems?

2 years ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

If it is the best practice to have 1 more docker with ClearML client - will be happy to set it up, but I see no particular benefit of spliting it out from nvidia docker that runs experiments

2 years ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

We have physical server in server farm that we configure with 4 GPUs, so we run all on this hardware without cloud rent

2 years ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

Couple of words about our hydra config
it is located in root with train.py file. But the default config points to experiment folder with other configs and this is what I need to specify on every run

2 years ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

Previously I had general tab in Hyper Parameters, but now without this line I don't have it.

2 years ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

Yes, I have latest 1.0.5 version now and it gives same result in UI as previous version that I used

2 years ago
2 years ago
0 Hi, I Am Saving Plt Chart To Clearml Using

You can see the white-gray mesh on background that shows the end of the image. It is cropped in the middle of labels

2 years ago
0 Hi, I Am Saving Plt Chart To Clearml Using

Results > Debug Samples

2 years ago
0 Hi, I Am Saving Plt Chart To Clearml Using

When I save plot in jupyter notebook it is not cropped

2 years ago
0 Hi, I Am Saving Plt Chart To Clearml Using

I save it to PC and it is not only UI issue. My guess is that it plt.fig is cropped or by SummaryWriter or by trains. Help me debug where is the problem, I will meanwhile try to see what this SummaryWriter does to plt plots

2 years ago
0 Hi, I Am Saving Plt Chart To Clearml Using

Hi, I solved this cut out of labels with
fig.tight_layout() return fig

2 years ago
0 Hi, I Am Trying To Run Experiment From Clearml Web Ui. I Did Experiment Copy, Enqueue, But In The Execution Log I See That It Runs Command

1 more interesting bug. After I changed my "train.py" in according to hydra_exampl.py I started getting errors in the end of experiment
` --- Logging error ---
2021-08-17 13:33:28
ValueError: I/O operation on closed file.
2021-08-17 13:33:28
File "/opt/conda/lib/python3.8/site-packages/clearml/backend_interface/logger.py", line 200, in write
self._terminal._original_write(message) # noqa
2021-08-17 13:33:28
File "/opt/conda/lib/python3.8/site-packages/clearml/backend_interface/logger...

2 years ago
0 Hello, I Am Using Clearml On My Server That Is Located In Hamachi Vpn Network With Ip 25.X.X.X. Clearml Runs In Docker With Api_Server:

TimelyPenguin76 Thank you for posting this. I just realized that I changed wrong config. I changed the one on server, but I needed to change the one inside the docker container. Now all works. Thanks for help!

2 years ago
0 Hello, I Am Using Clearml On My Server That Is Located In Hamachi Vpn Network With Ip 25.X.X.X. Clearml Runs In Docker With Api_Server:

Thank you. I've changed clearml.conf, but url are remain with old ip. Do I need to restart ClearML or run any command to apply config changes?

2 years ago
Show more results compactanswers