Training in progress, step 100
Browse files- .ipynb_checkpoints/run-checkpoint.sh +7 -5
- config.json +9 -1
- pytorch_model.bin +1 -1
- run.sh +7 -5
- special_tokens_map.json +1 -1
- training_args.bin +1 -1
.ipynb_checkpoints/run-checkpoint.sh
CHANGED
@@ -1,20 +1,22 @@
|
|
1 |
python run_speech_recognition_ctc.py \
|
2 |
--dataset_name="mozilla-foundation/common_voice_7_0" \
|
3 |
-
--model_name_or_path="facebook/wav2vec2-
|
4 |
--dataset_config_name="ur" \
|
5 |
--output_dir="./" \
|
6 |
--overwrite_output_dir \
|
7 |
-
--max_steps="
|
8 |
-
--
|
|
|
|
|
9 |
--learning_rate="3e-4" \
|
10 |
-
--save_total_limit="
|
11 |
--evaluation_strategy="steps" \
|
12 |
--text_column_name="sentence" \
|
13 |
--length_column_name="input_length" \
|
14 |
--chars_to_ignore ,\?\.\!\-\;\:\"\โ\%\โ\โ\๏ฟฝ\ู\ู\ูู,ู\
|
15 |
--save_steps="100" \
|
16 |
--layerdrop="0.0" \
|
17 |
-
--num_train_epochs="
|
18 |
--freeze_feature_encoder \
|
19 |
--gradient_checkpointing \
|
20 |
--fp16 \
|
|
|
1 |
python run_speech_recognition_ctc.py \
|
2 |
--dataset_name="mozilla-foundation/common_voice_7_0" \
|
3 |
+
--model_name_or_path="facebook/wav2vec2-large-xlsr-53" \
|
4 |
--dataset_config_name="ur" \
|
5 |
--output_dir="./" \
|
6 |
--overwrite_output_dir \
|
7 |
+
--max_steps="2000" \
|
8 |
+
--gradient_accumulation_steps="2" \
|
9 |
+
--lr_scheduler_type="linear" \
|
10 |
+
--per_device_train_batch_size="64" \
|
11 |
--learning_rate="3e-4" \
|
12 |
+
--save_total_limit="2" \
|
13 |
--evaluation_strategy="steps" \
|
14 |
--text_column_name="sentence" \
|
15 |
--length_column_name="input_length" \
|
16 |
--chars_to_ignore ,\?\.\!\-\;\:\"\โ\%\โ\โ\๏ฟฝ\ู\ู\ูู,ู\
|
17 |
--save_steps="100" \
|
18 |
--layerdrop="0.0" \
|
19 |
+
--num_train_epochs="750.0" \
|
20 |
--freeze_feature_encoder \
|
21 |
--gradient_checkpointing \
|
22 |
--fp16 \
|
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "facebook/wav2vec2-
|
3 |
"activation_dropout": 0.0,
|
4 |
"adapter_kernel_size": 3,
|
5 |
"adapter_stride": 2,
|
@@ -59,12 +59,20 @@
|
|
59 |
"intermediate_size": 4096,
|
60 |
"layer_norm_eps": 1e-05,
|
61 |
"layerdrop": 0.0,
|
|
|
|
|
|
|
|
|
|
|
62 |
"mask_feature_length": 10,
|
63 |
"mask_feature_min_masks": 0,
|
64 |
"mask_feature_prob": 0.0,
|
65 |
"mask_time_length": 10,
|
66 |
"mask_time_min_masks": 2,
|
|
|
|
|
67 |
"mask_time_prob": 0.05,
|
|
|
68 |
"model_type": "wav2vec2",
|
69 |
"num_adapter_layers": 3,
|
70 |
"num_attention_heads": 16,
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "facebook/wav2vec2-large-xlsr-53",
|
3 |
"activation_dropout": 0.0,
|
4 |
"adapter_kernel_size": 3,
|
5 |
"adapter_stride": 2,
|
|
|
59 |
"intermediate_size": 4096,
|
60 |
"layer_norm_eps": 1e-05,
|
61 |
"layerdrop": 0.0,
|
62 |
+
"mask_channel_length": 10,
|
63 |
+
"mask_channel_min_space": 1,
|
64 |
+
"mask_channel_other": 0.0,
|
65 |
+
"mask_channel_prob": 0.0,
|
66 |
+
"mask_channel_selection": "static",
|
67 |
"mask_feature_length": 10,
|
68 |
"mask_feature_min_masks": 0,
|
69 |
"mask_feature_prob": 0.0,
|
70 |
"mask_time_length": 10,
|
71 |
"mask_time_min_masks": 2,
|
72 |
+
"mask_time_min_space": 1,
|
73 |
+
"mask_time_other": 0.0,
|
74 |
"mask_time_prob": 0.05,
|
75 |
+
"mask_time_selection": "static",
|
76 |
"model_type": "wav2vec2",
|
77 |
"num_adapter_layers": 3,
|
78 |
"num_attention_heads": 16,
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 1262149169
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:db6bb3faa65845292b326eba507ccb53f867819da6892213cd1f606491f870a6
|
3 |
size 1262149169
|
run.sh
CHANGED
@@ -1,20 +1,22 @@
|
|
1 |
python run_speech_recognition_ctc.py \
|
2 |
--dataset_name="mozilla-foundation/common_voice_7_0" \
|
3 |
-
--model_name_or_path="facebook/wav2vec2-
|
4 |
--dataset_config_name="ur" \
|
5 |
--output_dir="./" \
|
6 |
--overwrite_output_dir \
|
7 |
-
--max_steps="
|
8 |
-
--
|
|
|
|
|
9 |
--learning_rate="3e-4" \
|
10 |
-
--save_total_limit="
|
11 |
--evaluation_strategy="steps" \
|
12 |
--text_column_name="sentence" \
|
13 |
--length_column_name="input_length" \
|
14 |
--chars_to_ignore ,\?\.\!\-\;\:\"\โ\%\โ\โ\๏ฟฝ\ู\ู\ูู,ู\
|
15 |
--save_steps="100" \
|
16 |
--layerdrop="0.0" \
|
17 |
-
--num_train_epochs="
|
18 |
--freeze_feature_encoder \
|
19 |
--gradient_checkpointing \
|
20 |
--fp16 \
|
|
|
1 |
python run_speech_recognition_ctc.py \
|
2 |
--dataset_name="mozilla-foundation/common_voice_7_0" \
|
3 |
+
--model_name_or_path="facebook/wav2vec2-large-xlsr-53" \
|
4 |
--dataset_config_name="ur" \
|
5 |
--output_dir="./" \
|
6 |
--overwrite_output_dir \
|
7 |
+
--max_steps="2000" \
|
8 |
+
--gradient_accumulation_steps="2" \
|
9 |
+
--lr_scheduler_type="linear" \
|
10 |
+
--per_device_train_batch_size="64" \
|
11 |
--learning_rate="3e-4" \
|
12 |
+
--save_total_limit="2" \
|
13 |
--evaluation_strategy="steps" \
|
14 |
--text_column_name="sentence" \
|
15 |
--length_column_name="input_length" \
|
16 |
--chars_to_ignore ,\?\.\!\-\;\:\"\โ\%\โ\โ\๏ฟฝ\ู\ู\ูู,ู\
|
17 |
--save_steps="100" \
|
18 |
--layerdrop="0.0" \
|
19 |
+
--num_train_epochs="750.0" \
|
20 |
--freeze_feature_encoder \
|
21 |
--gradient_checkpointing \
|
22 |
--fp16 \
|
special_tokens_map.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"bos_token": "<s>", "eos_token": "</s>", "unk_token": "[UNK]", "pad_token": "[PAD]", "additional_special_tokens": [{"content": "<s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, {"content": "</s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}]}
|
|
|
1 |
+
{"bos_token": "<s>", "eos_token": "</s>", "unk_token": "[UNK]", "pad_token": "[PAD]", "additional_special_tokens": [{"content": "<s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, {"content": "</s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, {"content": "<s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, {"content": "</s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, {"content": "<s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, {"content": "</s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}]}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 2991
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:19a3ea893e13d240e35254a9b7643af00427f3c37f5ec79d636fc7b249979609
|
3 |
size 2991
|