Everither commited on
Commit
7792807
·
verified ·
1 Parent(s): fbd3604

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "NeoBERTForSequenceClassification"
4
+ ],
5
+ "auto_map": {
6
+ "AutoConfig": "model.NeoBERTConfig",
7
+ "AutoModel": "model.NeoBERT",
8
+ "AutoModelForMaskedLM": "model.NeoBERTLMHead",
9
+ "AutoModelForSequenceClassification": "model.NeoBERTForSequenceClassification"
10
+ },
11
+ "classifier_init_range": 0.02,
12
+ "decoder_init_range": 0.02,
13
+ "dim_head": 64,
14
+ "dtype": "float32",
15
+ "embedding_init_range": 0.02,
16
+ "hidden_size": 768,
17
+ "id2label": {
18
+ "0": "Cryptolocker",
19
+ "1": "Cryptocurrency",
20
+ "10": "Hacking",
21
+ "11": "Counterfeit Credit-Cards",
22
+ "12": "Forum",
23
+ "13": "Locked",
24
+ "2": "Services",
25
+ "3": "Social-Network",
26
+ "4": "Hosting",
27
+ "5": "Personal",
28
+ "6": "Down",
29
+ "7": "Porno",
30
+ "8": "Marketplace",
31
+ "9": "Drugs"
32
+ },
33
+ "intermediate_size": 3072,
34
+ "kwargs": {
35
+ "architectures": [
36
+ "NeoBERTLMHead"
37
+ ],
38
+ "attn_implementation": null,
39
+ "auto_map": {
40
+ "AutoConfig": "model.NeoBERTConfig",
41
+ "AutoModel": "model.NeoBERT",
42
+ "AutoModelForMaskedLM": "model.NeoBERTLMHead",
43
+ "AutoModelForSequenceClassification": "model.NeoBERTForSequenceClassification"
44
+ },
45
+ "classifier_init_range": 0.02,
46
+ "dim_head": 64,
47
+ "kwargs": {
48
+ "classifier_init_range": 0.02,
49
+ "pretrained_model_name_or_path": "google-bert/bert-base-uncased",
50
+ "trust_remote_code": true
51
+ },
52
+ "model_type": "neobert",
53
+ "pretrained_model_name_or_path": "google-bert/bert-base-uncased",
54
+ "torch_dtype": "float32",
55
+ "transformers_version": "4.48.2",
56
+ "trust_remote_code": true
57
+ },
58
+ "label2id": {
59
+ "Counterfeit Credit-Cards": 11,
60
+ "Cryptocurrency": 1,
61
+ "Cryptolocker": 0,
62
+ "Down": 6,
63
+ "Drugs": 9,
64
+ "Forum": 12,
65
+ "Hacking": 10,
66
+ "Hosting": 4,
67
+ "Locked": 13,
68
+ "Marketplace": 8,
69
+ "Personal": 5,
70
+ "Porno": 7,
71
+ "Services": 2,
72
+ "Social-Network": 3
73
+ },
74
+ "max_length": 4096,
75
+ "model_type": "neobert",
76
+ "norm_eps": 1e-05,
77
+ "num_attention_heads": 12,
78
+ "num_hidden_layers": 28,
79
+ "pad_token_id": 0,
80
+ "pretrained_model_name_or_path": "google-bert/bert-base-uncased",
81
+ "problem_type": "single_label_classification",
82
+ "transformers_version": "4.57.1",
83
+ "trust_remote_code": true,
84
+ "vocab_size": 30522
85
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6009f080c228c6943fa0b4a9740be25f48990c7c19a3d0a3f16fefe13c8b7aae
3
+ size 889087504
special_tokens_map.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": {
3
+ "content": "[CLS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "mask_token": {
10
+ "content": "[MASK]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "[PAD]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "sep_token": {
24
+ "content": "[SEP]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "unk_token": {
31
+ "content": "[UNK]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ }
37
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_input_names": [
50
+ "input_ids",
51
+ "attention_mask"
52
+ ],
53
+ "model_max_length": 4096,
54
+ "pad_token": "[PAD]",
55
+ "sep_token": "[SEP]",
56
+ "strip_accents": null,
57
+ "tokenize_chinese_chars": true,
58
+ "tokenizer_class": "BertTokenizer",
59
+ "unk_token": "[UNK]",
60
+ "vocab_size": 30522
61
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8347634a67a99357c5f2ea6c0bcce7bdc8048bdd1bc79c83c3b0a75dfd5fe77e
3
+ size 5841
vocab.txt ADDED
The diff for this file is too large to render. See raw diff