infinitejoy
commited on
Commit
•
7c63835
1
Parent(s):
63db1f1
training code
Browse files
run.sh
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
python run_speech_recognition_ctc.py \
|
2 |
+
--dataset_name="mozilla-foundation/common_voice_7_0" \
|
3 |
+
--model_name_or_path="facebook/wav2vec2-xls-r-300m" \
|
4 |
+
--dataset_config_name="sk" \
|
5 |
+
--output_dir="./wav2vec2-large-xls-r-300m-slovak" \
|
6 |
+
--overwrite_output_dir \
|
7 |
+
--num_train_epochs="100" \
|
8 |
+
--per_device_train_batch_size="32" \
|
9 |
+
--per_device_eval_batch_size="1" \
|
10 |
+
--gradient_accumulation_steps="1" \
|
11 |
+
--learning_rate="7e-5" \
|
12 |
+
--warmup_steps="3000" \
|
13 |
+
--length_column_name="input_length" \
|
14 |
+
--evaluation_strategy="steps" \
|
15 |
+
--text_column_name="sentence" \
|
16 |
+
--chars_to_ignore , ? . ! \- \; \: \" “ % ‘ ” � — ’ … – \' \` \
|
17 |
+
--save_steps="3000" \
|
18 |
+
--eval_steps="3000" \
|
19 |
+
--logging_steps="100" \
|
20 |
+
--layerdrop="0.0" \
|
21 |
+
--activation_dropout="0.1" \
|
22 |
+
--save_total_limit="2" \
|
23 |
+
--freeze_feature_encoder \
|
24 |
+
--feat_proj_dropout="0.0" \
|
25 |
+
--mask_time_prob="0.75" \
|
26 |
+
--mask_time_length="10" \
|
27 |
+
--mask_feature_prob="0.25" \
|
28 |
+
--mask_feature_length="64" \
|
29 |
+
--gradient_checkpointing \
|
30 |
+
--use_auth_token \
|
31 |
+
--fp16 \
|
32 |
+
--group_by_length \
|
33 |
+
--do_train --do_eval \
|
34 |
+
--push_to_hub
|