sijunhe commited on
Commit
10f24b1
1 Parent(s): bbf0309

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +24 -0
config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+
3
+ "architectures": [
4
+ "UNIMOLMHeadModel"
5
+ ],
6
+ "vocab_size": 18000,
7
+ "hidden_size": 768,
8
+ "num_hidden_layers": 12,
9
+ "num_attention_heads": 12,
10
+ "intermediate_size": 3072,
11
+ "hidden_act": "relu",
12
+ "hidden_dropout_prob": 0.1,
13
+ "attention_probs_dropout_prob": 0.1,
14
+ "normalize_before": false,
15
+ "max_position_embeddings": 513,
16
+ "type_vocab_size": 4,
17
+ "initializer_range": 0.02,
18
+ "unk_token_id": 17963,
19
+ "pad_token_id": 0,
20
+ "bos_token_id": 1,
21
+ "eos_token_id": 3,
22
+ "mask_token_id": 3,
23
+ "model_type": "unimo"
24
+ }