Training in progress, epoch 1
Browse files- config.json +102 -0
- model.safetensors +3 -0
- runs/May15_18-31-06_standardnc24adsa100v4al/events.out.tfevents.1715798002.standardnc24adsa100v4al.5293.1 +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +55 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bert-large-cased",
|
3 |
+
"architectures": [
|
4 |
+
"BertForTokenClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"directionality": "bidi",
|
9 |
+
"gradient_checkpointing": false,
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.1,
|
12 |
+
"hidden_size": 1024,
|
13 |
+
"id2label": {
|
14 |
+
"0": "O",
|
15 |
+
"1": "B-BOSS",
|
16 |
+
"2": "I-BOSS",
|
17 |
+
"3": "B-MOB",
|
18 |
+
"4": "I-MOB",
|
19 |
+
"5": "B-MAP",
|
20 |
+
"6": "I-MAP",
|
21 |
+
"7": "B-JOB",
|
22 |
+
"8": "I-JOB",
|
23 |
+
"9": "B-INGAME_ITEM",
|
24 |
+
"10": "I-INGAME_ITEM",
|
25 |
+
"11": "B-QUEST",
|
26 |
+
"12": "I-QUEST",
|
27 |
+
"13": "B-CHANNEL",
|
28 |
+
"14": "I-CHANNEL",
|
29 |
+
"15": "B-SALE_ITEM",
|
30 |
+
"16": "I-SALE_ITEM",
|
31 |
+
"17": "B-EVENT",
|
32 |
+
"18": "I-EVENT",
|
33 |
+
"19": "B-MECHANIC",
|
34 |
+
"20": "I-MECHANIC",
|
35 |
+
"21": "B-FEATURE",
|
36 |
+
"22": "I-FEATURE",
|
37 |
+
"23": "B-NPC",
|
38 |
+
"24": "I-NPC",
|
39 |
+
"25": "B-GAME",
|
40 |
+
"26": "I-GAME",
|
41 |
+
"27": "B-SKILL",
|
42 |
+
"28": "I-SKILL",
|
43 |
+
"29": "B-UPDATE",
|
44 |
+
"30": "I-UPDATE",
|
45 |
+
"31": "B-MISC",
|
46 |
+
"32": "I-MISC"
|
47 |
+
},
|
48 |
+
"initializer_range": 0.02,
|
49 |
+
"intermediate_size": 4096,
|
50 |
+
"label2id": {
|
51 |
+
"B-BOSS": 1,
|
52 |
+
"B-CHANNEL": 13,
|
53 |
+
"B-EVENT": 17,
|
54 |
+
"B-FEATURE": 21,
|
55 |
+
"B-GAME": 25,
|
56 |
+
"B-INGAME_ITEM": 9,
|
57 |
+
"B-JOB": 7,
|
58 |
+
"B-MAP": 5,
|
59 |
+
"B-MECHANIC": 19,
|
60 |
+
"B-MISC": 31,
|
61 |
+
"B-MOB": 3,
|
62 |
+
"B-NPC": 23,
|
63 |
+
"B-QUEST": 11,
|
64 |
+
"B-SALE_ITEM": 15,
|
65 |
+
"B-SKILL": 27,
|
66 |
+
"B-UPDATE": 29,
|
67 |
+
"I-BOSS": 2,
|
68 |
+
"I-CHANNEL": 14,
|
69 |
+
"I-EVENT": 18,
|
70 |
+
"I-FEATURE": 22,
|
71 |
+
"I-GAME": 26,
|
72 |
+
"I-INGAME_ITEM": 10,
|
73 |
+
"I-JOB": 8,
|
74 |
+
"I-MAP": 6,
|
75 |
+
"I-MECHANIC": 20,
|
76 |
+
"I-MISC": 32,
|
77 |
+
"I-MOB": 4,
|
78 |
+
"I-NPC": 24,
|
79 |
+
"I-QUEST": 12,
|
80 |
+
"I-SALE_ITEM": 16,
|
81 |
+
"I-SKILL": 28,
|
82 |
+
"I-UPDATE": 30,
|
83 |
+
"O": 0
|
84 |
+
},
|
85 |
+
"layer_norm_eps": 1e-12,
|
86 |
+
"max_position_embeddings": 512,
|
87 |
+
"model_type": "bert",
|
88 |
+
"num_attention_heads": 16,
|
89 |
+
"num_hidden_layers": 24,
|
90 |
+
"pad_token_id": 0,
|
91 |
+
"pooler_fc_size": 768,
|
92 |
+
"pooler_num_attention_heads": 12,
|
93 |
+
"pooler_num_fc_layers": 3,
|
94 |
+
"pooler_size_per_head": 128,
|
95 |
+
"pooler_type": "first_token_transform",
|
96 |
+
"position_embedding_type": "absolute",
|
97 |
+
"torch_dtype": "float32",
|
98 |
+
"transformers_version": "4.39.3",
|
99 |
+
"type_vocab_size": 2,
|
100 |
+
"use_cache": true,
|
101 |
+
"vocab_size": 28996
|
102 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:db4360fc493302f8ef49f4b5a5fd68446dbf6db77d83b0f500f65af5c4f630a0
|
3 |
+
size 1330300772
|
runs/May15_18-31-06_standardnc24adsa100v4al/events.out.tfevents.1715798002.standardnc24adsa100v4al.5293.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3cf3c286d6a51011f271ffd0fe82ec5ea99100a931a48891656ea1a272c1d68d
|
3 |
+
size 8091
|
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:a19b7e4bd23313f7a3908308ae8bbf2eedc6e90da3c09985c527960dbff6969b
|
3 |
+
size 4527
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|