Training in progress, step 5
Browse files- config.json +34 -23
- log +0 -0
- preprocessor_config.json +2 -2
- pytorch_model.bin +2 -2
- run.sh +1 -1
- special_tokens_map.json +1 -1
- training_args.bin +1 -1
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
"activation_dropout": 0.0,
|
4 |
"adapter_kernel_size": 3,
|
5 |
"adapter_stride": 2,
|
@@ -11,23 +11,35 @@
|
|
11 |
"attention_dropout": 0.0,
|
12 |
"bos_token_id": 1,
|
13 |
"classifier_proj_size": 256,
|
14 |
-
"codevector_dim":
|
15 |
"contrastive_logits_temperature": 0.1,
|
16 |
-
"conv_bias":
|
17 |
"conv_dim": [
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
|
|
21 |
],
|
22 |
"conv_kernel": [
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
],
|
27 |
"conv_stride": [
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
31 |
],
|
32 |
"ctc_loss_reduction": "mean",
|
33 |
"ctc_zero_infinity": false,
|
@@ -42,10 +54,9 @@
|
|
42 |
"final_dropout": 0.0,
|
43 |
"hidden_act": "gelu",
|
44 |
"hidden_dropout": 0.0,
|
45 |
-
"
|
46 |
-
"hidden_size": 16,
|
47 |
"initializer_range": 0.02,
|
48 |
-
"intermediate_size":
|
49 |
"layer_norm_eps": 1e-05,
|
50 |
"layerdrop": 0.0,
|
51 |
"mask_feature_length": 10,
|
@@ -56,17 +67,17 @@
|
|
56 |
"mask_time_prob": 0.05,
|
57 |
"model_type": "wav2vec2",
|
58 |
"num_adapter_layers": 3,
|
59 |
-
"num_attention_heads":
|
60 |
"num_codevector_groups": 2,
|
61 |
"num_codevectors_per_group": 320,
|
62 |
-
"num_conv_pos_embedding_groups":
|
63 |
-
"num_conv_pos_embeddings":
|
64 |
-
"num_feat_extract_layers":
|
65 |
-
"num_hidden_layers":
|
66 |
-
"num_negatives":
|
67 |
-
"output_hidden_size":
|
68 |
"pad_token_id": 108,
|
69 |
-
"proj_codevector_dim":
|
70 |
"tdnn_dilation": [
|
71 |
1,
|
72 |
2,
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "facebook/wav2vec2-xls-r-300m",
|
3 |
"activation_dropout": 0.0,
|
4 |
"adapter_kernel_size": 3,
|
5 |
"adapter_stride": 2,
|
|
|
11 |
"attention_dropout": 0.0,
|
12 |
"bos_token_id": 1,
|
13 |
"classifier_proj_size": 256,
|
14 |
+
"codevector_dim": 768,
|
15 |
"contrastive_logits_temperature": 0.1,
|
16 |
+
"conv_bias": true,
|
17 |
"conv_dim": [
|
18 |
+
512,
|
19 |
+
512,
|
20 |
+
512,
|
21 |
+
512,
|
22 |
+
512,
|
23 |
+
512,
|
24 |
+
512
|
25 |
],
|
26 |
"conv_kernel": [
|
27 |
+
10,
|
28 |
+
3,
|
29 |
+
3,
|
30 |
+
3,
|
31 |
+
3,
|
32 |
+
2,
|
33 |
+
2
|
34 |
],
|
35 |
"conv_stride": [
|
36 |
+
5,
|
37 |
+
2,
|
38 |
+
2,
|
39 |
+
2,
|
40 |
+
2,
|
41 |
+
2,
|
42 |
+
2
|
43 |
],
|
44 |
"ctc_loss_reduction": "mean",
|
45 |
"ctc_zero_infinity": false,
|
|
|
54 |
"final_dropout": 0.0,
|
55 |
"hidden_act": "gelu",
|
56 |
"hidden_dropout": 0.0,
|
57 |
+
"hidden_size": 1024,
|
|
|
58 |
"initializer_range": 0.02,
|
59 |
+
"intermediate_size": 4096,
|
60 |
"layer_norm_eps": 1e-05,
|
61 |
"layerdrop": 0.0,
|
62 |
"mask_feature_length": 10,
|
|
|
67 |
"mask_time_prob": 0.05,
|
68 |
"model_type": "wav2vec2",
|
69 |
"num_adapter_layers": 3,
|
70 |
+
"num_attention_heads": 16,
|
71 |
"num_codevector_groups": 2,
|
72 |
"num_codevectors_per_group": 320,
|
73 |
+
"num_conv_pos_embedding_groups": 16,
|
74 |
+
"num_conv_pos_embeddings": 128,
|
75 |
+
"num_feat_extract_layers": 7,
|
76 |
+
"num_hidden_layers": 24,
|
77 |
+
"num_negatives": 100,
|
78 |
+
"output_hidden_size": 1024,
|
79 |
"pad_token_id": 108,
|
80 |
+
"proj_codevector_dim": 768,
|
81 |
"tdnn_dilation": [
|
82 |
1,
|
83 |
2,
|
log
ADDED
The diff for this file is too large to render.
See raw diff
|
|
preprocessor_config.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
"feature_extractor_type": "Wav2Vec2FeatureExtractor",
|
4 |
"feature_size": 1,
|
5 |
"padding_side": "right",
|
6 |
-
"padding_value": 0
|
7 |
-
"return_attention_mask":
|
8 |
"sampling_rate": 16000
|
9 |
}
|
|
|
3 |
"feature_extractor_type": "Wav2Vec2FeatureExtractor",
|
4 |
"feature_size": 1,
|
5 |
"padding_side": "right",
|
6 |
+
"padding_value": 0,
|
7 |
+
"return_attention_mask": true,
|
8 |
"sampling_rate": 16000
|
9 |
}
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b84b86b71a70d39e8fdda0f7e05e065028e99b889512345becf3fdc8a56c4106
|
3 |
+
size 1262378737
|
run.sh
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
python run_speech_recognition_ctc.py \
|
2 |
--dataset_name="mozilla-foundation/common_voice_7_0" \
|
3 |
-
--model_name_or_path="
|
4 |
--dataset_config_name="ta" \
|
5 |
--output_dir="./" \
|
6 |
--overwrite_output_dir \
|
|
|
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="ta" \
|
5 |
--output_dir="./" \
|
6 |
--overwrite_output_dir \
|
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}]}
|
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:b381b5987de34382e58ae6875e3f7b8c627bb1466de9cb0bd135536993bb72ab
|
3 |
size 2991
|