-
The hyperparameter-search section does help when doing hyperparameter-search. But if I want a simple multirun like
The first one seems to be the right multirun folder, right? Is this the right way to do a simple multirun? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
As you can see from many issues, multirun + DDP currently doesn't work correctly. This due to the way hydra creates a new work dir for every run, which is not compatible with DDP which runs new process for each GPU. A while ago I made an issue about in lightning repo, read it if you want to learn more: Lightning-AI/pytorch-lightning#11300 I don't see anything we can do about it for now. It's being worked on, so the future release might fix it. |
Beta Was this translation helpful? Give feedback.
As you can see from many issues, multirun + DDP currently doesn't work correctly. This due to the way hydra creates a new work dir for every run, which is not compatible with DDP which runs new process for each GPU.
A while ago I made an issue about in lightning repo, read it if you want to learn more: Lightning-AI/pytorch-lightning#11300
I don't see anything we can do about it for now. It's being worked on, so the future release might fix it.