Sakil commited on
Commit
898dd09
1 Parent(s): ba39f10

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +25 -29
config.json CHANGED
@@ -1,29 +1,25 @@
1
- {
2
- "architectures": [
3
- DistilBertForSequenceClassification
4
- ],
5
- "attention_probs_dropout_prob": 0.1,
6
- "finetuning_task": "deepsentipers",
7
- "gradient_checkpointing": false,
8
- "hidden_act": "gelu",
9
- "hidden_dropout_prob": 0.1,
10
- "hidden_size": 768,
11
- "id2label": {
12
- "0": "negative",
13
- "1": "positive"
14
- },
15
- "initializer_range": 0.02,
16
- "intermediate_size": 3072,
17
- "label2id": {
18
- "negative": 0,
19
- "positive": 1
20
- },
21
- "layer_norm_eps": 1e-12,
22
- "max_position_embeddings": 512,
23
- "model_type": "bert",
24
- "num_attention_heads": 12,
25
- "num_hidden_layers": 12,
26
- "pad_token_id": 0,
27
- "type_vocab_size": 2,
28
- "vocab_size": 100000
29
- }
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "initializer_range": 0.02,
12
+ "max_position_embeddings": 512,
13
+ "model_type": "distilbert",
14
+ "n_heads": 12,
15
+ "n_layers": 6,
16
+ "pad_token_id": 0,
17
+ "problem_type": "single_label_classification",
18
+ "qa_dropout": 0.1,
19
+ "seq_classif_dropout": 0.2,
20
+ "sinusoidal_pos_embds": false,
21
+ "tie_weights_": true,
22
+ "torch_dtype": "float32",
23
+ "transformers_version": "4.15.0",
24
+ "vocab_size": 30522
25
+ }