WiebeVandendriessche commited on
Commit
ee14c4f
·
verified ·
1 Parent(s): aeaa7c4

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +14 -0
config.json CHANGED
@@ -1,4 +1,18 @@
1
  {
2
  "model_type": "bert",
3
  "architectures": ["BertForSequenceClassification"],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  }
 
1
  {
2
  "model_type": "bert",
3
  "architectures": ["BertForSequenceClassification"],
4
+ "hidden_size": 768,
5
+ "num_hidden_layers": 12,
6
+ "num_attention_heads": 12,
7
+ "intermediate_size": 3072,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "attention_probs_dropout_prob": 0.1,
11
+ "max_position_embeddings": 512,
12
+ "type_vocab_size": 2,
13
+ "initializer_range": 0.02,
14
+ "layer_norm_eps": 1e-12,
15
+ "pad_token_id": 0,
16
+ "position_embedding_type": "absolute",
17
+ "use_cache": true
18
  }