NER Training complete
Browse files- README.md +52 -0
- config.json +102 -0
- model.safetensors +3 -0
- runs/May15_22-10-48_standardnc24adsa100v4al/events.out.tfevents.1715811055.standardnc24adsa100v4al.4736.2 +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
README.md
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
base_model: bert-large-cased
|
4 |
+
tags:
|
5 |
+
- generated_from_trainer
|
6 |
+
model-index:
|
7 |
+
- name: bert-lg-cased-ms-ner-v3-full
|
8 |
+
results: []
|
9 |
+
---
|
10 |
+
|
11 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
12 |
+
should probably proofread and complete it, then remove this comment. -->
|
13 |
+
|
14 |
+
# bert-lg-cased-ms-ner-v3-full
|
15 |
+
|
16 |
+
This model is a fine-tuned version of [bert-large-cased](https://huggingface.co/bert-large-cased) on an unknown dataset.
|
17 |
+
|
18 |
+
## Model description
|
19 |
+
|
20 |
+
More information needed
|
21 |
+
|
22 |
+
## Intended uses & limitations
|
23 |
+
|
24 |
+
More information needed
|
25 |
+
|
26 |
+
## Training and evaluation data
|
27 |
+
|
28 |
+
More information needed
|
29 |
+
|
30 |
+
## Training procedure
|
31 |
+
|
32 |
+
### Training hyperparameters
|
33 |
+
|
34 |
+
The following hyperparameters were used during training:
|
35 |
+
- learning_rate: 2e-05
|
36 |
+
- train_batch_size: 8
|
37 |
+
- eval_batch_size: 8
|
38 |
+
- seed: 42
|
39 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
40 |
+
- lr_scheduler_type: linear
|
41 |
+
- num_epochs: 4
|
42 |
+
|
43 |
+
### Training results
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
### Framework versions
|
48 |
+
|
49 |
+
- Transformers 4.39.3
|
50 |
+
- Pytorch 1.12.0
|
51 |
+
- Datasets 2.18.0
|
52 |
+
- Tokenizers 0.15.2
|
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:73c91e2f0cfb91630156ce84797ce9ccd5c3b7f17f664889e25869c6dba9744b
|
3 |
+
size 1330300772
|
runs/May15_22-10-48_standardnc24adsa100v4al/events.out.tfevents.1715811055.standardnc24adsa100v4al.4736.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e669849b378ebb81cbb9ab4aa3fa691c691ed025848dc3b22ebe1cfd95ef43a5
|
3 |
+
size 13243
|
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:cfed33b965166d0c266fb1624dc44220985e8d5c6a37e22f15ecf3c97dc86f8a
|
3 |
+
size 4527
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|