Joesh1 commited on
Commit
2d464b0
·
verified ·
1 Parent(s): 88a0ca5

Upload 4 files

Browse files
Files changed (4) hide show
  1. config.json +66 -0
  2. model.safetensors +3 -0
  3. tokenizer.json +0 -0
  4. tokenizer_config.json +56 -0
config.json ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "architectures": [
4
+ "DistilBertForSequenceClassification"
5
+ ],
6
+ "attention_dropout": 0.1,
7
+ "dim": 768,
8
+ "dropout": 0.1,
9
+ "hidden_dim": 3072,
10
+ "id2label": {
11
+ "0": "Closure and Regulation of Schools",
12
+ "1": "External Border Restrictions",
13
+ "2": "Health Resources",
14
+ "3": "Restriction and Regulation of Businesses",
15
+ "4": "Restrictions of Mass Gatherings",
16
+ "5": "Social Distancing",
17
+ "6": "Anti-Disinformation Measures",
18
+ "7": "COVID-19 Vaccines",
19
+ "8": "Curfew",
20
+ "9": "Declaration of Emergency",
21
+ "10": "Health Monitoring",
22
+ "11": "Health Testing",
23
+ "12": "Hygiene",
24
+ "13": "Internal Border Restrictions",
25
+ "14": "Lockdown",
26
+ "15": "New Task Force, Bureau or Administrative Configuration",
27
+ "16": "Public Awareness Measures",
28
+ "17": "Quarantine",
29
+ "18": "Restriction and Regulation of Government Services"
30
+ },
31
+ "initializer_range": 0.02,
32
+ "label2id": {
33
+ "Anti-Disinformation Measures": 6,
34
+ "COVID-19 Vaccines": 7,
35
+ "Closure and Regulation of Schools": 0,
36
+ "Curfew": 8,
37
+ "Declaration of Emergency": 9,
38
+ "External Border Restrictions": 1,
39
+ "Health Monitoring": 10,
40
+ "Health Resources": 2,
41
+ "Health Testing": 11,
42
+ "Hygiene": 12,
43
+ "Internal Border Restrictions": 13,
44
+ "Lockdown": 14,
45
+ "New Task Force, Bureau or Administrative Configuration": 15,
46
+ "Public Awareness Measures": 16,
47
+ "Quarantine": 17,
48
+ "Restriction and Regulation of Businesses": 3,
49
+ "Restriction and Regulation of Government Services": 18,
50
+ "Restrictions of Mass Gatherings": 4,
51
+ "Social Distancing": 5
52
+ },
53
+ "max_position_embeddings": 512,
54
+ "model_type": "distilbert",
55
+ "n_heads": 12,
56
+ "n_layers": 6,
57
+ "pad_token_id": 0,
58
+ "problem_type": "single_label_classification",
59
+ "qa_dropout": 0.1,
60
+ "seq_classif_dropout": 0.2,
61
+ "sinusoidal_pos_embds": false,
62
+ "tie_weights_": true,
63
+ "torch_dtype": "float32",
64
+ "transformers_version": "4.51.3",
65
+ "vocab_size": 30522
66
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37bb085dd3138fba04928f740dcbdb16fac6779db24935c9671395967d587444
3
+ size 267884860
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": false,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": true,
47
+ "extra_special_tokens": {},
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 512,
50
+ "pad_token": "[PAD]",
51
+ "sep_token": "[SEP]",
52
+ "strip_accents": null,
53
+ "tokenize_chinese_chars": true,
54
+ "tokenizer_class": "DistilBertTokenizer",
55
+ "unk_token": "[UNK]"
56
+ }