hf-transformers-bot commited on
Commit
14b05a4
·
verified ·
1 Parent(s): 650a94f

Update tiny models for SEWForSequenceClassification

Browse files
config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_dropout": 0.1,
3
+ "apply_spec_augment": true,
4
+ "architectures": [
5
+ "SEWForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "bos_token_id": 1,
9
+ "classifier_proj_size": 256,
10
+ "conv_bias": false,
11
+ "conv_dim": [
12
+ 64,
13
+ 32,
14
+ 32
15
+ ],
16
+ "conv_kernel": [
17
+ 10,
18
+ 3,
19
+ 1
20
+ ],
21
+ "conv_stride": [
22
+ 5,
23
+ 2,
24
+ 1
25
+ ],
26
+ "ctc_loss_reduction": "mean",
27
+ "ctc_zero_infinity": false,
28
+ "dtype": "float32",
29
+ "eos_token_id": 2,
30
+ "feat_extract_activation": "gelu",
31
+ "feat_extract_dropout": 0.0,
32
+ "feat_extract_norm": "group",
33
+ "feat_proj_dropout": 0.0,
34
+ "final_dropout": 0.1,
35
+ "hidden_act": "gelu",
36
+ "hidden_dropout": 0.1,
37
+ "hidden_size": 32,
38
+ "initializer_range": 0.02,
39
+ "intermediate_size": 20,
40
+ "layer_norm_eps": 1e-05,
41
+ "layerdrop": 0.1,
42
+ "mask_feature_length": 10,
43
+ "mask_feature_min_masks": 0,
44
+ "mask_feature_prob": 0.0,
45
+ "mask_time_length": 10,
46
+ "mask_time_min_masks": 2,
47
+ "mask_time_prob": 0.05,
48
+ "model_type": "sew",
49
+ "num_attention_heads": 2,
50
+ "num_conv_pos_embedding_groups": 2,
51
+ "num_conv_pos_embeddings": 31,
52
+ "num_feat_extract_layers": 3,
53
+ "num_hidden_layers": 2,
54
+ "pad_token_id": 0,
55
+ "squeeze_factor": 2,
56
+ "transformers_version": "5.16.0.dev0",
57
+ "use_weighted_layer_sum": false,
58
+ "vocab_size": 32
59
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4088fd87bfa22753ae2c065a2960bbab8280165dc7b75632969ec5430caea31
3
+ size 191244
preprocessor_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": true,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "image_mean": [
7
+ 0.485,
8
+ 0.456,
9
+ 0.406
10
+ ],
11
+ "image_processor_type": "SegGptImageProcessor",
12
+ "image_std": [
13
+ 0.229,
14
+ 0.224,
15
+ 0.225
16
+ ],
17
+ "resample": 3,
18
+ "rescale_factor": 0.00392156862745098,
19
+ "size": {
20
+ "height": 448,
21
+ "width": 448
22
+ }
23
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "<pad>",
5
+ "lstrip": true,
6
+ "normalized": false,
7
+ "rstrip": true,
8
+ "single_word": false,
9
+ "special": false
10
+ },
11
+ "1": {
12
+ "content": "<s>",
13
+ "lstrip": true,
14
+ "normalized": false,
15
+ "rstrip": true,
16
+ "single_word": false,
17
+ "special": false
18
+ },
19
+ "2": {
20
+ "content": "</s>",
21
+ "lstrip": true,
22
+ "normalized": false,
23
+ "rstrip": true,
24
+ "single_word": false,
25
+ "special": false
26
+ },
27
+ "3": {
28
+ "content": "<unk>",
29
+ "lstrip": true,
30
+ "normalized": false,
31
+ "rstrip": true,
32
+ "single_word": false,
33
+ "special": false
34
+ },
35
+ "4": {
36
+ "content": "|",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "backend": "custom",
45
+ "bos_token": "<s>",
46
+ "do_lower_case": false,
47
+ "do_normalize": true,
48
+ "eos_token": "</s>",
49
+ "is_local": false,
50
+ "local_files_only": false,
51
+ "model_max_length": 1000000000000000019884624838656,
52
+ "pad_token": "<pad>",
53
+ "replace_word_delimiter_char": " ",
54
+ "return_attention_mask": false,
55
+ "target_lang": null,
56
+ "tokenizer_class": "Wav2Vec2CTCTokenizer",
57
+ "unk_token": "<unk>",
58
+ "word_delimiter_token": "|"
59
+ }
vocab.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "'": 27,
3
+ "</s>": 2,
4
+ "<pad>": 0,
5
+ "<s>": 1,
6
+ "<unk>": 3,
7
+ "A": 7,
8
+ "B": 24,
9
+ "C": 19,
10
+ "D": 14,
11
+ "E": 5,
12
+ "F": 20,
13
+ "G": 21,
14
+ "H": 11,
15
+ "I": 10,
16
+ "J": 29,
17
+ "K": 26,
18
+ "L": 15,
19
+ "M": 17,
20
+ "N": 9,
21
+ "O": 8,
22
+ "P": 23,
23
+ "Q": 30,
24
+ "R": 13,
25
+ "S": 12,
26
+ "T": 6,
27
+ "U": 16,
28
+ "V": 25,
29
+ "W": 18,
30
+ "X": 28,
31
+ "Y": 22,
32
+ "Z": 31,
33
+ "|": 4
34
+ }