AnnyNguyen commited on
Commit
c20efc3
·
verified ·
1 Parent(s): 4ab7bcc

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +50 -0
config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "T5ForSequenceClassification"
4
+ ],
5
+ "classifier_dropout": 0.0,
6
+ "d_ff": 3072,
7
+ "d_kv": 64,
8
+ "d_model": 768,
9
+ "decoder_start_token_id": 0,
10
+ "dense_act_fn": "relu",
11
+ "dropout_rate": 0.1,
12
+ "dtype": "float32",
13
+ "eos_token_id": 1,
14
+ "feed_forward_proj": "relu",
15
+ "id2label": {
16
+ "0": "Enjoyment",
17
+ "1": "Sadness",
18
+ "2": "Anger",
19
+ "3": "Fear",
20
+ "4": "Disgust",
21
+ "5": "Surprise",
22
+ "6": "Other"
23
+ },
24
+ "initializer_factor": 1.0,
25
+ "is_encoder_decoder": true,
26
+ "is_gated_act": false,
27
+ "label2id": {
28
+ "Anger": 2,
29
+ "Disgust": 4,
30
+ "Enjoyment": 0,
31
+ "Fear": 3,
32
+ "Other": 6,
33
+ "Sadness": 1,
34
+ "Surprise": 5
35
+ },
36
+ "layer_norm_epsilon": 1e-06,
37
+ "model_type": "t5",
38
+ "n_positions": 512,
39
+ "num_decoder_layers": 12,
40
+ "num_heads": 12,
41
+ "num_layers": 12,
42
+ "output_past": true,
43
+ "pad_token_id": 0,
44
+ "problem_type": "single_label_classification",
45
+ "relative_attention_max_distance": 128,
46
+ "relative_attention_num_buckets": 32,
47
+ "transformers_version": "4.57.1",
48
+ "use_cache": true,
49
+ "vocab_size": 36096
50
+ }