RobPruzan commited on
Commit
5956ac9
·
1 Parent(s): 8e9b8d7

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +22 -0
config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DistilBertForSequenceClassification"
4
+ ],
5
+ "model_type": "distilbert",
6
+ "num_labels": 1,
7
+ "id2label": {
8
+ "0": "label_0"
9
+ },
10
+ "label2id": {
11
+ "label_0": 0
12
+ },
13
+ "output_hidden_states": false,
14
+ "output_attentions": false,
15
+ "max_position_embeddings": 512,
16
+ "hidden_size": 768,
17
+ "num_hidden_layers": 6,
18
+ "num_attention_heads": 12,
19
+ "hidden_dropout_prob": 0.1,
20
+ "attention_probs_dropout_prob": 0.1,
21
+ "initializer_range": 0.02
22
+ }