Commit ·
394f3d1
1
Parent(s): 9620139
Training in progress, epoch 1
Browse files- config.json +92 -0
- model.safetensors +3 -0
- runs/Dec20_10-42-18_6351be31edc6/events.out.tfevents.1703068980.6351be31edc6.2015.0 +3 -0
- runs/Dec20_10-42-18_6351be31edc6/events.out.tfevents.1703069018.6351be31edc6.2015.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,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": "O",
|
| 14 |
+
"1": "B-PER",
|
| 15 |
+
"2": "I-PER",
|
| 16 |
+
"3": "B-ORG",
|
| 17 |
+
"4": "I-ORG",
|
| 18 |
+
"5": "B-LOC",
|
| 19 |
+
"6": "I-LOC",
|
| 20 |
+
"7": "B-ANIM",
|
| 21 |
+
"8": "I-ANIM",
|
| 22 |
+
"9": "B-BIO",
|
| 23 |
+
"10": "I-BIO",
|
| 24 |
+
"11": "B-CEL",
|
| 25 |
+
"12": "I-CEL",
|
| 26 |
+
"13": "B-DIS",
|
| 27 |
+
"14": "I-DIS",
|
| 28 |
+
"15": "B-EVE",
|
| 29 |
+
"16": "I-EVE",
|
| 30 |
+
"17": "B-FOOD",
|
| 31 |
+
"18": "I-FOOD",
|
| 32 |
+
"19": "B-INST",
|
| 33 |
+
"20": "I-INST",
|
| 34 |
+
"21": "B-MEDIA",
|
| 35 |
+
"22": "I-MEDIA",
|
| 36 |
+
"23": "B-MYTH",
|
| 37 |
+
"24": "I-MYTH",
|
| 38 |
+
"25": "B-PLANT",
|
| 39 |
+
"26": "I-PLANT",
|
| 40 |
+
"27": "B-TIME",
|
| 41 |
+
"28": "I-TIME",
|
| 42 |
+
"29": "B-VEHI",
|
| 43 |
+
"30": "I-VEHI"
|
| 44 |
+
},
|
| 45 |
+
"initializer_range": 0.02,
|
| 46 |
+
"intermediate_size": 3072,
|
| 47 |
+
"label2id": {
|
| 48 |
+
"B-ANIM": 7,
|
| 49 |
+
"B-BIO": 9,
|
| 50 |
+
"B-CEL": 11,
|
| 51 |
+
"B-DIS": 13,
|
| 52 |
+
"B-EVE": 15,
|
| 53 |
+
"B-FOOD": 17,
|
| 54 |
+
"B-INST": 19,
|
| 55 |
+
"B-LOC": 5,
|
| 56 |
+
"B-MEDIA": 21,
|
| 57 |
+
"B-MYTH": 23,
|
| 58 |
+
"B-ORG": 3,
|
| 59 |
+
"B-PER": 1,
|
| 60 |
+
"B-PLANT": 25,
|
| 61 |
+
"B-TIME": 27,
|
| 62 |
+
"B-VEHI": 29,
|
| 63 |
+
"I-ANIM": 8,
|
| 64 |
+
"I-BIO": 10,
|
| 65 |
+
"I-CEL": 12,
|
| 66 |
+
"I-DIS": 14,
|
| 67 |
+
"I-EVE": 16,
|
| 68 |
+
"I-FOOD": 18,
|
| 69 |
+
"I-INST": 20,
|
| 70 |
+
"I-LOC": 6,
|
| 71 |
+
"I-MEDIA": 22,
|
| 72 |
+
"I-MYTH": 24,
|
| 73 |
+
"I-ORG": 4,
|
| 74 |
+
"I-PER": 2,
|
| 75 |
+
"I-PLANT": 26,
|
| 76 |
+
"I-TIME": 28,
|
| 77 |
+
"I-VEHI": 30,
|
| 78 |
+
"O": 0
|
| 79 |
+
},
|
| 80 |
+
"layer_norm_eps": 1e-12,
|
| 81 |
+
"max_position_embeddings": 512,
|
| 82 |
+
"model_type": "bert",
|
| 83 |
+
"num_attention_heads": 12,
|
| 84 |
+
"num_hidden_layers": 12,
|
| 85 |
+
"pad_token_id": 0,
|
| 86 |
+
"position_embedding_type": "absolute",
|
| 87 |
+
"torch_dtype": "float32",
|
| 88 |
+
"transformers_version": "4.36.2",
|
| 89 |
+
"type_vocab_size": 2,
|
| 90 |
+
"use_cache": true,
|
| 91 |
+
"vocab_size": 28996
|
| 92 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d8434025714714b5ddbdc7f78e6081cc0987ca7ed034299191358173b504af8
|
| 3 |
+
size 430997412
|
runs/Dec20_10-42-18_6351be31edc6/events.out.tfevents.1703068980.6351be31edc6.2015.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b17f430e8f485ce35776a30bfe00b85d5beb37c0e8e9d1685b51beb42443d8cc
|
| 3 |
+
size 5514
|
runs/Dec20_10-42-18_6351be31edc6/events.out.tfevents.1703069018.6351be31edc6.2015.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b5cb56f1c1de739a33de2c5e928e8fc9efc2316f9bd562269bae9ec74102733
|
| 3 |
+
size 16299
|
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:503e6274b74a75b57c3202c6dd04aa05749364d26c1f8e31d31dd9b4d6feff39
|
| 3 |
+
size 4728
|
vocab.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|