From 660756d0455b9776adeffd5f1e4d7ae9f44fcc72 Mon Sep 17 00:00:00 2001 From: Huibin Shen Date: Tue, 14 May 2024 18:43:46 +0200 Subject: [PATCH] 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 --- scripts/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/README.md b/scripts/README.md index 31a93ba..925aefc 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -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