sickcell69 commited on
Commit
7e7fbd8
1 Parent(s): 61ea5c9

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-cased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "B-Area",
14
+ "1": "B-Exp",
15
+ "2": "B-Features",
16
+ "3": "B-HackOrg",
17
+ "4": "B-Idus",
18
+ "5": "B-OffAct",
19
+ "6": "B-Org",
20
+ "7": "B-Purp",
21
+ "8": "B-SamFile",
22
+ "9": "B-SecTeam",
23
+ "10": "B-Time",
24
+ "11": "B-Tool",
25
+ "12": "B-Way",
26
+ "13": "I-Area",
27
+ "14": "I-Exp",
28
+ "15": "I-Features",
29
+ "16": "I-HackOrg",
30
+ "17": "I-Idus",
31
+ "18": "I-OffAct",
32
+ "19": "I-Org",
33
+ "20": "I-Purp",
34
+ "21": "I-SamFile",
35
+ "22": "I-SecTeam",
36
+ "23": "I-Time",
37
+ "24": "I-Tool",
38
+ "25": "I-Way",
39
+ "26": "O"
40
+ },
41
+ "initializer_range": 0.02,
42
+ "intermediate_size": 3072,
43
+ "label2id": {
44
+ "B-Area": 0,
45
+ "B-Exp": 1,
46
+ "B-Features": 2,
47
+ "B-HackOrg": 3,
48
+ "B-Idus": 4,
49
+ "B-OffAct": 5,
50
+ "B-Org": 6,
51
+ "B-Purp": 7,
52
+ "B-SamFile": 8,
53
+ "B-SecTeam": 9,
54
+ "B-Time": 10,
55
+ "B-Tool": 11,
56
+ "B-Way": 12,
57
+ "I-Area": 13,
58
+ "I-Exp": 14,
59
+ "I-Features": 15,
60
+ "I-HackOrg": 16,
61
+ "I-Idus": 17,
62
+ "I-OffAct": 18,
63
+ "I-Org": 19,
64
+ "I-Purp": 20,
65
+ "I-SamFile": 21,
66
+ "I-SecTeam": 22,
67
+ "I-Time": 23,
68
+ "I-Tool": 24,
69
+ "I-Way": 25,
70
+ "O": 26
71
+ },
72
+ "layer_norm_eps": 1e-12,
73
+ "max_position_embeddings": 512,
74
+ "model_type": "bert",
75
+ "num_attention_heads": 12,
76
+ "num_hidden_layers": 12,
77
+ "pad_token_id": 0,
78
+ "position_embedding_type": "absolute",
79
+ "torch_dtype": "float32",
80
+ "transformers_version": "4.42.4",
81
+ "type_vocab_size": 2,
82
+ "use_cache": true,
83
+ "vocab_size": 28996
84
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:021207a1b423ef557ade3807de7ebdc34d839841ed6d616a4605306f1c4574fb
3
+ size 430985108
runs/Jul29_07-29-07_9b0aa93e5939/events.out.tfevents.1722238148.9b0aa93e5939.759.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b293bb7acb12a342001cffa7ea7142722eb51b07754d45eb2ca11f2f8ce89174
3
+ size 6596
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": true,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": false,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "BertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57b3a847d476c313dd7cc3ecfad4fce371ab6825905492319943895252034f89
3
+ size 5112
vocab.txt ADDED
The diff for this file is too large to render. See raw diff