Add one space after --config in training readme (#71)

*Issue #, if available:*

*Description of changes:*
There is one space missing in the example training command.

By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice.

Co-authored-by: Ubuntu <ubuntu@ip-172-31-43-83.us-west-2.compute.internal>
This commit is contained in:
Huibin Shen 2024-05-14 18:43:46 +02:00 committed by GitHub
parent e3abe439cb
commit 660756d045
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -74,7 +74,7 @@
- Start the training (or fine-tuning) job:
```sh
# On single GPU
CUDA_VISIBLE_DEVICES=0 python training/train.py --config/path/to/modified/config.yaml
CUDA_VISIBLE_DEVICES=0 python training/train.py --config /path/to/modified/config.yaml
# On multiple GPUs (example with 8 GPUs)
torchrun --nproc-per-node=8 training/train.py --config /path/to/modified/config.yaml