Skip to content

Commit 4f65004

Browse files
authored
Removing extra space in large command for speech-pretraining example (#38705)
Removing extra space in Large command
1 parent d3d835d commit 4f65004

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/pytorch/speech-pretraining/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ To pre-train `"large-sized"` Wav2Vec2 model, *e.g.* [facebook/wav2vec2-large-lv6
129129
on [librispeech_asr](https://huggingface.co/datasets/librispeech_asr), the following command can be run:
130130

131131
```bash
132-
accelerate launch run_wav2vec2_pretraining_no_trainer.py \
132+
accelerate launch run_wav2vec2_pretraining_no_trainer.py \
133133
--dataset_name=librispeech_asr \
134134
--dataset_config_names clean clean other \
135135
--dataset_split_names train.100 train.360 train.500 \
@@ -141,7 +141,7 @@ accelerate launch run_wav2vec2_pretraining_no_trainer.py \
141141
--weight_decay=0.01 \
142142
--max_duration_in_seconds=20.0 \
143143
--min_duration_in_seconds=2.0 \
144-
--model_name_or_path=./
144+
--model_name_or_path=./ \
145145
--logging_steps=1 \
146146
--saving_steps=10000 \
147147
--per_device_train_batch_size=2 \

0 commit comments

Comments
 (0)