chrmongeau commited on
Commit
2e122d3
·
verified ·
1 Parent(s): 627e75b

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +25 -22
config.json CHANGED
@@ -1,33 +1,36 @@
1
  {
2
  "_name_or_path": "mysent",
3
- "activation": "gelu",
4
  "architectures": [
5
- "DistilBertForSequenceClassification"
6
  ],
7
- "attention_dropout": 0.1,
8
- "dim": 768,
9
- "dropout": 0.1,
10
- "finetuning_task": "sst-2",
11
- "hidden_dim": 3072,
 
12
  "id2label": {
13
- "0": "NEGATIVE",
14
- "1": "POSITIVE"
15
  },
16
  "initializer_range": 0.02,
 
17
  "label2id": {
18
- "NEGATIVE": 0,
19
- "POSITIVE": 1
20
  },
 
21
  "max_position_embeddings": 512,
22
- "model_type": "distilbert",
23
- "n_heads": 12,
24
- "n_layers": 6,
25
- "output_past": true,
26
  "pad_token_id": 0,
27
- "qa_dropout": 0.1,
28
- "seq_classif_dropout": 0.2,
29
- "sinusoidal_pos_embds": false,
30
- "tie_weights_": true,
31
- "transformers_version": "4.29.2",
32
- "vocab_size": 30522
33
- }
 
 
 
 
 
1
  {
2
  "_name_or_path": "mysent",
 
3
  "architectures": [
4
+ "BertForSequenceClassification"
5
  ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "directionality": "bidi",
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
  "id2label": {
13
+ "0": "LABEL_0"
 
14
  },
15
  "initializer_range": 0.02,
16
+ "intermediate_size": 3072,
17
  "label2id": {
18
+ "LABEL_0": 0
 
19
  },
20
+ "layer_norm_eps": 1e-12,
21
  "max_position_embeddings": 512,
22
+ "model_type": "bert",
23
+ "num_attention_heads": 12,
24
+ "num_hidden_layers": 12,
 
25
  "pad_token_id": 0,
26
+ "pooler_fc_size": 768,
27
+ "pooler_num_attention_heads": 12,
28
+ "pooler_num_fc_layers": 3,
29
+ "pooler_size_per_head": 128,
30
+ "pooler_type": "first_token_transform",
31
+ "position_embedding_type": "absolute",
32
+ "transformers_version": "4.42.4",
33
+ "type_vocab_size": 2,
34
+ "use_cache": true,
35
+ "vocab_size": 105879
36
+ }