Does Pytorch-Lightning have a multiprocessing (or Joblib) module? #2720
-
❓ Questions and HelpWhat is your question?I have been googling around but can't seem to find if there is a Does anyone know if Pytorch-Lightning has this (or a Many thanks in advance. Ps. Sorry if this this the wrong place to post this question. I have posted the same question in Stackoverflow, but haven't received a reply. Edit: To be more specific, I am looking for a
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
PL is just PyTorch under the hood, you can use |
Beta Was this translation helpful? Give feedback.
PL is just PyTorch under the hood, you can use
torch
onjoblib
directly...in case you want train distributed in CPU only you can use
ddp_cpu
backend 🐰