Shade63 commited on
Commit
aa61774
·
verified ·
1 Parent(s): 8740598
config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "architectures": [
4
+ "DistilBertForSequenceClassification"
5
+ ],
6
+ "attention_dropout": 0.2,
7
+ "bos_token_id": null,
8
+ "dim": 768,
9
+ "dropout": 0.2,
10
+ "dtype": "float32",
11
+ "eos_token_id": null,
12
+ "hidden_dim": 3072,
13
+ "id2label": {
14
+ "0": "legit",
15
+ "1": "government_impersonation",
16
+ "2": "financial_fraud",
17
+ "3": "bank_phishing",
18
+ "4": "romance_parcel_sextortion"
19
+ },
20
+ "initializer_range": 0.02,
21
+ "label2id": {
22
+ "bank_phishing": 3,
23
+ "financial_fraud": 2,
24
+ "government_impersonation": 1,
25
+ "legit": 0,
26
+ "romance_parcel_sextortion": 4
27
+ },
28
+ "max_position_embeddings": 512,
29
+ "model_type": "distilbert",
30
+ "n_heads": 12,
31
+ "n_layers": 6,
32
+ "pad_token_id": 0,
33
+ "problem_type": "single_label_classification",
34
+ "qa_dropout": 0.1,
35
+ "seq_classif_dropout": 0.2,
36
+ "sinusoidal_pos_embds": false,
37
+ "tie_weights_": true,
38
+ "tie_word_embeddings": true,
39
+ "transformers_version": "5.0.0",
40
+ "use_cache": false,
41
+ "vocab_size": 30522
42
+ }
label_mapping.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id2label": {
3
+ "0": "legit",
4
+ "1": "government_impersonation",
5
+ "2": "financial_fraud",
6
+ "3": "bank_phishing",
7
+ "4": "romance_parcel_sextortion"
8
+ },
9
+ "label2id": {
10
+ "legit": 0,
11
+ "government_impersonation": 1,
12
+ "financial_fraud": 2,
13
+ "bank_phishing": 3,
14
+ "romance_parcel_sextortion": 4
15
+ }
16
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc8057e342ababdc8e375698be977f8cf390ebe0227d90a41a2ce473292bbf6b
3
+ size 267841796
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "is_local": false,
6
+ "mask_token": "[MASK]",
7
+ "model_max_length": 512,
8
+ "pad_token": "[PAD]",
9
+ "sep_token": "[SEP]",
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "DistilBertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }