KhaldiAbderrhmane commited on
Commit
5e4ff4e
·
verified ·
1 Parent(s): b787f21

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +67 -2
config.json CHANGED
@@ -1,10 +1,75 @@
1
  {
 
 
2
  "architectures": [
3
  "EmotionClassifierHuBERT"
4
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  "hidden_size": 128,
6
-
 
 
 
 
 
 
 
 
 
 
 
7
  "num_classes": 6,
 
 
 
 
 
8
  "torch_dtype": "float32",
9
- "transformers_version": "4.37.2"
 
 
10
  }
 
1
  {
2
+ "activation_dropout": 0.1,
3
+ "apply_spec_augment": true,
4
  "architectures": [
5
  "EmotionClassifierHuBERT"
6
  ],
7
+ "attention_dropout": 0.1,
8
+ "bos_token_id": 1,
9
+ "classifier_proj_size": 256,
10
+ "conv_bias": false,
11
+ "conv_dim": [
12
+ 512,
13
+ 512,
14
+ 512,
15
+ 512,
16
+ 512,
17
+ 512,
18
+ 512
19
+ ],
20
+ "conv_kernel": [
21
+ 10,
22
+ 3,
23
+ 3,
24
+ 3,
25
+ 3,
26
+ 2,
27
+ 2
28
+ ],
29
+ "conv_stride": [
30
+ 5,
31
+ 2,
32
+ 2,
33
+ 2,
34
+ 2,
35
+ 2,
36
+ 2
37
+ ],
38
+ "ctc_loss_reduction": "sum",
39
+ "ctc_zero_infinity": false,
40
+ "do_stable_layer_norm": false,
41
+ "encoder_attention_heads": 12,
42
+ "encoder_ffn_dim": 3072,
43
+ "encoder_layers": 12,
44
+ "eos_token_id": 2,
45
+ "feat_extract_activation": "gelu",
46
+ "feat_extract_norm": "group",
47
+ "feat_proj_dropout": 0.0,
48
+ "feat_proj_layer_norm": true,
49
+ "final_dropout": 0.1,
50
+ "hidden_act": "gelu",
51
+ "hidden_dropout": 0.1,
52
  "hidden_size": 128,
53
+ "initializer_range": 0.02,
54
+ "intermediate_size": 3072,
55
+ "layer_norm_eps": 1e-05,
56
+ "layerdrop": 0.1,
57
+ "mask_feature_length": 10,
58
+ "mask_feature_min_masks": 0,
59
+ "mask_feature_prob": 0.0,
60
+ "mask_time_length": 10,
61
+ "mask_time_min_masks": 2,
62
+ "mask_time_prob": 0.05,
63
+ "model_type": "hubert",
64
+ "num_attention_heads": 12,
65
  "num_classes": 6,
66
+ "num_conv_pos_embedding_groups": 16,
67
+ "num_conv_pos_embeddings": 128,
68
+ "num_feat_extract_layers": 7,
69
+ "num_hidden_layers": 12,
70
+ "pad_token_id": 0,
71
  "torch_dtype": "float32",
72
+ "transformers_version": "4.37.2",
73
+ "use_weighted_layer_sum": false,
74
+ "vocab_size": 32
75
  }