Closed weixuansun closed 5 months ago
I do not think it is necessary to train this model in multiple nodes.
If you mean training the model on several GPUs, this script help you.
python main.py --base configs/custom_vqgan.yaml -t True --gpus "0,1"
This helps you train in multiple GPUs on one node.
Thank you for the quick answer. I am trying to train on my own large dataset, so I want to use multi nodes. Any hint on how to achieve that?
This link includes the arguments for training, you can give it a try.
I do not think it is necessary to train this model in multiple nodes.
If you mean training the model on several GPUs, this script help you.
python main.py --base configs/custom_vqgan.yaml -t True --gpus 0,1
This helps you train in multiple GPUs on one node.
I think you should use gpu id as string --gpus "0,1"
Hi, thanks for this amazing repo. I wonder could you share the command for training on multiple gpu nodes?