hts98 commited on
Commit
fd7a89e
1 Parent(s): f86b789

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
added_tokens.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "</s>": 109,
3
+ "<s>": 108
4
+ }
config.json ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/hubert-large-ls960-ft",
3
+ "activation_dropout": 0.0,
4
+ "apply_spec_augment": true,
5
+ "architectures": [
6
+ "HubertForCTC"
7
+ ],
8
+ "attention_dropout": 0.0,
9
+ "bos_token_id": 1,
10
+ "classifier_proj_size": 256,
11
+ "conv_bias": true,
12
+ "conv_dim": [
13
+ 512,
14
+ 512,
15
+ 512,
16
+ 512,
17
+ 512,
18
+ 512,
19
+ 512
20
+ ],
21
+ "conv_kernel": [
22
+ 10,
23
+ 3,
24
+ 3,
25
+ 3,
26
+ 3,
27
+ 2,
28
+ 2
29
+ ],
30
+ "conv_stride": [
31
+ 5,
32
+ 2,
33
+ 2,
34
+ 2,
35
+ 2,
36
+ 2,
37
+ 2
38
+ ],
39
+ "ctc_loss_reduction": "mean",
40
+ "ctc_zero_infinity": false,
41
+ "diversity_loss_weight": 0.1,
42
+ "do_stable_layer_norm": true,
43
+ "eos_token_id": 2,
44
+ "feat_extract_activation": "gelu",
45
+ "feat_extract_dropout": 0.0,
46
+ "feat_extract_norm": "layer",
47
+ "feat_proj_dropout": 0.0,
48
+ "feat_proj_layer_norm": true,
49
+ "final_dropout": 0.0,
50
+ "hidden_act": "gelu",
51
+ "hidden_dropout": 0.0,
52
+ "hidden_dropout_prob": 0.1,
53
+ "hidden_size": 1024,
54
+ "initializer_range": 0.02,
55
+ "intermediate_size": 4096,
56
+ "layer_norm_eps": 1e-05,
57
+ "layerdrop": 0.0,
58
+ "mask_feature_length": 10,
59
+ "mask_feature_min_masks": 0,
60
+ "mask_feature_prob": 0.0,
61
+ "mask_time_length": 10,
62
+ "mask_time_min_masks": 2,
63
+ "mask_time_prob": 0.05,
64
+ "model_type": "hubert",
65
+ "num_attention_heads": 16,
66
+ "num_conv_pos_embedding_groups": 16,
67
+ "num_conv_pos_embeddings": 128,
68
+ "num_feat_extract_layers": 7,
69
+ "num_hidden_layers": 24,
70
+ "pad_token_id": 107,
71
+ "torch_dtype": "float32",
72
+ "transformers_version": "4.31.0.dev0",
73
+ "use_weighted_layer_sum": false,
74
+ "vocab_size": 110
75
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": true,
3
+ "feature_extractor_type": "Wav2Vec2FeatureExtractor",
4
+ "feature_size": 1,
5
+ "padding_side": "right",
6
+ "padding_value": 0,
7
+ "processor_class": "Wav2Vec2Processor",
8
+ "return_attention_mask": true,
9
+ "sampling_rate": 16000
10
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91eab2edc195e73f0675b99369587309389f50854ccfd8dc0079d16d0cc4198b
3
+ size 1262351981
runs/Jul01_14-15-45_6fa7882a54ad/events.out.tfevents.1688221821.6fa7882a54ad.1414.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcd695b1f78f4a6a6d958fd055097aed3aac83f2cc23bc8cf40b3d390bf7e23b
3
+ size 5282
special_tokens_map.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ {
4
+ "content": "<s>",
5
+ "lstrip": false,
6
+ "normalized": true,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ {
11
+ "content": "</s>",
12
+ "lstrip": false,
13
+ "normalized": true,
14
+ "rstrip": false,
15
+ "single_word": false
16
+ },
17
+ {
18
+ "content": "<s>",
19
+ "lstrip": false,
20
+ "normalized": true,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ {
25
+ "content": "</s>",
26
+ "lstrip": false,
27
+ "normalized": true,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ ],
32
+ "bos_token": "<s>",
33
+ "eos_token": "</s>",
34
+ "pad_token": "[PAD]",
35
+ "unk_token": "[UNK]"
36
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "clean_up_tokenization_spaces": true,
4
+ "do_lower_case": false,
5
+ "eos_token": "</s>",
6
+ "model_max_length": 1000000000000000019884624838656,
7
+ "pad_token": "[PAD]",
8
+ "processor_class": "Wav2Vec2Processor",
9
+ "replace_word_delimiter_char": " ",
10
+ "target_lang": null,
11
+ "tokenizer_class": "Wav2Vec2CTCTokenizer",
12
+ "unk_token": "[UNK]",
13
+ "word_delimiter_token": "|"
14
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a564c4a2931aa9c622937d477f26a860957413ceb91277d2ac4ac1afa2d0661
3
+ size 4027
vocab.json ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ ",": 1,
3
+ ".": 2,
4
+ "0": 3,
5
+ "1": 4,
6
+ "2": 5,
7
+ "3": 6,
8
+ "4": 7,
9
+ "5": 8,
10
+ "6": 9,
11
+ "7": 10,
12
+ "8": 11,
13
+ "9": 12,
14
+ "[PAD]": 107,
15
+ "[UNK]": 106,
16
+ "a": 13,
17
+ "b": 14,
18
+ "c": 15,
19
+ "d": 16,
20
+ "e": 17,
21
+ "f": 18,
22
+ "g": 19,
23
+ "h": 20,
24
+ "i": 21,
25
+ "j": 22,
26
+ "k": 23,
27
+ "l": 24,
28
+ "m": 25,
29
+ "n": 26,
30
+ "o": 27,
31
+ "p": 28,
32
+ "q": 29,
33
+ "r": 30,
34
+ "s": 31,
35
+ "t": 32,
36
+ "u": 33,
37
+ "v": 34,
38
+ "w": 35,
39
+ "x": 36,
40
+ "y": 37,
41
+ "z": 38,
42
+ "|": 0,
43
+ "à": 39,
44
+ "á": 40,
45
+ "â": 41,
46
+ "ã": 42,
47
+ "è": 43,
48
+ "é": 44,
49
+ "ê": 45,
50
+ "ì": 46,
51
+ "í": 47,
52
+ "ò": 48,
53
+ "ó": 49,
54
+ "ô": 50,
55
+ "õ": 51,
56
+ "ù": 52,
57
+ "ú": 53,
58
+ "ý": 54,
59
+ "ă": 55,
60
+ "đ": 56,
61
+ "ĩ": 57,
62
+ "ũ": 58,
63
+ "ơ": 59,
64
+ "ư": 60,
65
+ "ạ": 61,
66
+ "ả": 62,
67
+ "ấ": 63,
68
+ "ầ": 64,
69
+ "ẩ": 65,
70
+ "ẫ": 66,
71
+ "ậ": 67,
72
+ "ắ": 68,
73
+ "ằ": 69,
74
+ "ẳ": 70,
75
+ "ẵ": 71,
76
+ "ặ": 72,
77
+ "ẹ": 73,
78
+ "ẻ": 74,
79
+ "ẽ": 75,
80
+ "ế": 76,
81
+ "ề": 77,
82
+ "ể": 78,
83
+ "ễ": 79,
84
+ "ệ": 80,
85
+ "ỉ": 81,
86
+ "ị": 82,
87
+ "ọ": 83,
88
+ "ỏ": 84,
89
+ "ố": 85,
90
+ "ồ": 86,
91
+ "ổ": 87,
92
+ "ỗ": 88,
93
+ "ộ": 89,
94
+ "ớ": 90,
95
+ "ờ": 91,
96
+ "ở": 92,
97
+ "ỡ": 93,
98
+ "ợ": 94,
99
+ "ụ": 95,
100
+ "ủ": 96,
101
+ "ứ": 97,
102
+ "ừ": 98,
103
+ "ử": 99,
104
+ "ữ": 100,
105
+ "ự": 101,
106
+ "ỳ": 102,
107
+ "ỷ": 103,
108
+ "ỹ": 104,
109
+ "₫": 105
110
+ }