aryankapur commited on
Commit
c714573
1 Parent(s): 11ff977

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +96 -0
config.json ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_dropout": 0.1,
3
+ "adapter_attn_dim": null,
4
+ "adapter_kernel_size": 3,
5
+ "adapter_stride": 2,
6
+ "add_adapter": false,
7
+ "apply_spec_augment": true,
8
+ "attention_dropout": 0.1,
9
+ "bos_token_id": 1,
10
+ "classifier_proj_size": 256,
11
+ "codevector_dim": 256,
12
+ "contrastive_logits_temperature": 0.1,
13
+ "conv_bias": false,
14
+ "conv_dim": [
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
+ ],
28
+ "conv_stride": [
29
+ 5,
30
+ 2,
31
+ 2,
32
+ 2,
33
+ 2
34
+ ],
35
+ "ctc_loss_reduction": "sum",
36
+ "ctc_zero_infinity": false,
37
+ "diversity_loss_weight": 0.1,
38
+ "do_stable_layer_norm": false,
39
+ "eos_token_id": 2,
40
+ "feat_extract_activation": "gelu",
41
+ "feat_extract_norm": "group",
42
+ "feat_proj_dropout": 0.0,
43
+ "feat_quantizer_dropout": 0.0,
44
+ "final_dropout": 0.1,
45
+ "hidden_act": "gelu",
46
+ "hidden_dropout": 0.1,
47
+ "hidden_size": 768,
48
+ "initializer_range": 0.02,
49
+ "intermediate_size": 3072,
50
+ "layer_norm_eps": 1e-05,
51
+ "layerdrop": 0.1,
52
+ "mask_feature_length": 10,
53
+ "mask_feature_min_masks": 0,
54
+ "mask_feature_prob": 0.0,
55
+ "mask_time_length": 3,
56
+ "mask_time_min_masks": 2,
57
+ "mask_time_prob": 0.4,
58
+ "model_type": "wav2vec2",
59
+ "num_adapter_layers": 3,
60
+ "num_attention_heads": 8,
61
+ "num_codevector_groups": 2,
62
+ "num_codevectors_per_group": 320,
63
+ "num_conv_pos_embedding_groups": 16,
64
+ "num_conv_pos_embeddings": 128,
65
+ "num_feat_extract_layers": 5,
66
+ "num_hidden_layers": 8,
67
+ "num_negatives": 100,
68
+ "output_hidden_size": 768,
69
+ "pad_token_id": 0,
70
+ "proj_codevector_dim": 256,
71
+ "tdnn_dilation": [
72
+ 1,
73
+ 2,
74
+ 3,
75
+ 1,
76
+ 1
77
+ ],
78
+ "tdnn_dim": [
79
+ 512,
80
+ 512,
81
+ 512,
82
+ 512,
83
+ 1500
84
+ ],
85
+ "tdnn_kernel": [
86
+ 5,
87
+ 3,
88
+ 3,
89
+ 1,
90
+ 1
91
+ ],
92
+ "transformers_version": "4.41.0.dev0",
93
+ "use_weighted_layer_sum": false,
94
+ "vocab_size": 32,
95
+ "xvector_output_dim": 512
96
+ }