syarulzaffi commited on
Commit
5937eb3
·
verified ·
1 Parent(s): b699922

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +44 -0
config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert/distilbert-base-uncased",
3
+ "_num_labels": 7,
4
+ "activation": "gelu",
5
+ "architectures": [
6
+ "DistilBertForSequenceClassification"
7
+ ],
8
+ "attention_dropout": 0.1,
9
+ "dim": 768,
10
+ "dropout": 0.1,
11
+ "hidden_dim": 3072,
12
+ "id2label": {
13
+ "0": "%Y-%m-%d",
14
+ "1": "%Y-%m-%d %H:%M:%S %Z",
15
+ "2": "%Y-%m-%dT%H:%M:%S",
16
+ "3": "%Y-%m-%dT%H:%M:%SZ",
17
+ "4": "%a, %d %b %Y",
18
+ "5": "%d/%m/%Y",
19
+ "6": "%m-%d-%Y %H:%M"
20
+ },
21
+ "initializer_range": 0.02,
22
+ "label2id": {
23
+ "%Y-%m-%d": 0,
24
+ "%Y-%m-%d %H:%M:%S %Z": 1,
25
+ "%Y-%m-%dT%H:%M:%S": 2,
26
+ "%Y-%m-%dT%H:%M:%SZ": 3,
27
+ "%a, %d %b %Y": 4,
28
+ "%d/%m/%Y": 5,
29
+ "%m-%d-%Y %H:%M": 6
30
+ },
31
+ "max_position_embeddings": 512,
32
+ "model_type": "distilbert",
33
+ "n_heads": 12,
34
+ "n_layers": 6,
35
+ "pad_token_id": 0,
36
+ "problem_type": "single_label_classification",
37
+ "qa_dropout": 0.1,
38
+ "seq_classif_dropout": 0.2,
39
+ "sinusoidal_pos_embds": false,
40
+ "tie_weights_": true,
41
+ "torch_dtype": "float32",
42
+ "transformers_version": "4.45.0",
43
+ "vocab_size": 30522
44
+ }