Training in progress, step 13500
Browse files- config.json +1 -1
- pytorch_model.bin +1 -1
- run.sh +5 -4
- run02.sh +33 -0
- runs/Feb02_12-45-07_job-98a7eb1d-c6a6-4e4b-936b-3898557b5e73/1643806051.3083758/events.out.tfevents.1643806051.job-98a7eb1d-c6a6-4e4b-936b-3898557b5e73.638515.1 +3 -0
- runs/Feb02_12-45-07_job-98a7eb1d-c6a6-4e4b-936b-3898557b5e73/events.out.tfevents.1643806051.job-98a7eb1d-c6a6-4e4b-936b-3898557b5e73.638515.0 +3 -0
- special_tokens_map.json +1 -1
- training_args.bin +1 -1
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "./checkpoint-
|
3 |
"activation_dropout": 0.0,
|
4 |
"adapter_kernel_size": 3,
|
5 |
"adapter_stride": 2,
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "./checkpoint-13000",
|
3 |
"activation_dropout": 0.0,
|
4 |
"adapter_kernel_size": 3,
|
5 |
"adapter_stride": 2,
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 3850522801
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d8494513a916de6316ce29fe8066c179abd7ba4861406897eb0bb23188ff0297
|
3 |
size 3850522801
|
run.sh
CHANGED
@@ -1,15 +1,16 @@
|
|
1 |
python run_speech_recognition_ctc.py \
|
2 |
--dataset_name="common_voice" \
|
3 |
-
--model_name_or_path="./checkpoint-
|
4 |
--dataset_config_name="tr" \
|
5 |
--output_dir="./" \
|
6 |
--overwrite_output_dir \
|
7 |
-
--num_train_epochs="
|
8 |
--per_device_train_batch_size="32" \
|
9 |
--gradient_accumulation_steps="1" \
|
10 |
--learning_rate="2e-4" \
|
11 |
-
--adam_beta1="0.
|
12 |
-
--adam_beta2="0.
|
|
|
13 |
--warmup_steps="0" \
|
14 |
--evaluation_strategy="steps" \
|
15 |
--text_column_name="sentence" \
|
|
|
1 |
python run_speech_recognition_ctc.py \
|
2 |
--dataset_name="common_voice" \
|
3 |
+
--model_name_or_path="./checkpoint-13000" \
|
4 |
--dataset_config_name="tr" \
|
5 |
--output_dir="./" \
|
6 |
--overwrite_output_dir \
|
7 |
+
--num_train_epochs="200" \
|
8 |
--per_device_train_batch_size="32" \
|
9 |
--gradient_accumulation_steps="1" \
|
10 |
--learning_rate="2e-4" \
|
11 |
+
--adam_beta1="0.99999" \
|
12 |
+
--adam_beta2="0.999999" \
|
13 |
+
--lr_scheduler_type="linear" \
|
14 |
--warmup_steps="0" \
|
15 |
--evaluation_strategy="steps" \
|
16 |
--text_column_name="sentence" \
|
run02.sh
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
python run_speech_recognition_ctc.py \
|
2 |
+
--dataset_name="common_voice" \
|
3 |
+
--model_name_or_path="./checkpoint-10500" \
|
4 |
+
--dataset_config_name="tr" \
|
5 |
+
--output_dir="./" \
|
6 |
+
--overwrite_output_dir \
|
7 |
+
--num_train_epochs="120" \
|
8 |
+
--per_device_train_batch_size="32" \
|
9 |
+
--gradient_accumulation_steps="1" \
|
10 |
+
--learning_rate="2e-4" \
|
11 |
+
--adam_beta1="0.999" \
|
12 |
+
--adam_beta2="0.9999" \
|
13 |
+
--warmup_steps="0" \
|
14 |
+
--evaluation_strategy="steps" \
|
15 |
+
--text_column_name="sentence" \
|
16 |
+
--save_steps="500" \
|
17 |
+
--eval_steps="500" \
|
18 |
+
--logging_steps="1" \
|
19 |
+
--layerdrop="0.0" \
|
20 |
+
--eval_metrics wer cer \
|
21 |
+
--save_total_limit="1" \
|
22 |
+
--mask_time_prob="0.3" \
|
23 |
+
--mask_time_length="10" \
|
24 |
+
--mask_feature_prob="0.1" \
|
25 |
+
--mask_feature_length="64" \
|
26 |
+
--chars_to_ignore , ? . ! - \; \: \" “ % ‘ ” � \
|
27 |
+
--fp16 \
|
28 |
+
--group_by_length \
|
29 |
+
--push_to_hub \
|
30 |
+
--do_train --do_eval \
|
31 |
+
--gradient_checkpointing \
|
32 |
+
--report_to tensorboard \
|
33 |
+
--use_auth_token
|
runs/Feb02_12-45-07_job-98a7eb1d-c6a6-4e4b-936b-3898557b5e73/1643806051.3083758/events.out.tfevents.1643806051.job-98a7eb1d-c6a6-4e4b-936b-3898557b5e73.638515.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a144812eaa6678d243a37fac170e48ebd620d7118712f44fb4871bcf1d47aabf
|
3 |
+
size 4747
|
runs/Feb02_12-45-07_job-98a7eb1d-c6a6-4e4b-936b-3898557b5e73/events.out.tfevents.1643806051.job-98a7eb1d-c6a6-4e4b-936b-3898557b5e73.638515.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:679f1272c542a0602c14cbf1defbb0d71ee5138c8f52cd088807becb974f3071
|
3 |
+
size 83526
|
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}, {"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}]}
|
|
|
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}, {"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:aa75907883469fd5c7d8aec7402766a5d85324c2315ffc7be87c9fc5cf96d12a
|
3 |
size 2991
|