Update
Browse files- config.json +86 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tf_model.h5 +3 -0
- tokenizer_config.json +1 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"BertForTokenClassification"
|
4 |
+
],
|
5 |
+
"attention_probs_dropout_prob": 0.1,
|
6 |
+
"hidden_act": "gelu",
|
7 |
+
"hidden_dropout_prob": 0.1,
|
8 |
+
"hidden_size": 768,
|
9 |
+
"id2label": {
|
10 |
+
"0": "O",
|
11 |
+
"1": "B-address",
|
12 |
+
"2": "I-address",
|
13 |
+
"3": "B-book",
|
14 |
+
"4": "I-book",
|
15 |
+
"5": "B-company",
|
16 |
+
"6": "I-company",
|
17 |
+
"7": "B-game",
|
18 |
+
"8": "I-game",
|
19 |
+
"9": "B-government",
|
20 |
+
"10": "I-government",
|
21 |
+
"11": "B-movie",
|
22 |
+
"12": "I-movie",
|
23 |
+
"13": "B-name",
|
24 |
+
"14": "I-name",
|
25 |
+
"15": "B-organization",
|
26 |
+
"16": "I-organization",
|
27 |
+
"17": "B-position",
|
28 |
+
"18": "I-position",
|
29 |
+
"19": "B-scene",
|
30 |
+
"20": "I-scene",
|
31 |
+
"21": "S-address",
|
32 |
+
"22": "S-book",
|
33 |
+
"23": "S-company",
|
34 |
+
"24": "S-game",
|
35 |
+
"25": "S-government",
|
36 |
+
"26": "S-movie",
|
37 |
+
"27": "S-name",
|
38 |
+
"28": "S-organization",
|
39 |
+
"29": "S-position",
|
40 |
+
"30": "S-scene",
|
41 |
+
"31": "[PAD]"
|
42 |
+
},
|
43 |
+
"initializer_range": 0.02,
|
44 |
+
"intermediate_size": 3072,
|
45 |
+
"label2id": {
|
46 |
+
"B-address": 1,
|
47 |
+
"B-book": 3,
|
48 |
+
"B-company": 5,
|
49 |
+
"B-game": 7,
|
50 |
+
"B-government": 9,
|
51 |
+
"B-movie": 11,
|
52 |
+
"B-name": 13,
|
53 |
+
"B-organization": 15,
|
54 |
+
"B-position": 17,
|
55 |
+
"B-scene": 19,
|
56 |
+
"I-address": 2,
|
57 |
+
"I-book": 4,
|
58 |
+
"I-company": 6,
|
59 |
+
"I-game": 8,
|
60 |
+
"I-government": 10,
|
61 |
+
"I-movie": 12,
|
62 |
+
"I-name": 14,
|
63 |
+
"I-organization": 16,
|
64 |
+
"I-position": 18,
|
65 |
+
"I-scene": 20,
|
66 |
+
"O": 0,
|
67 |
+
"S-address": 21,
|
68 |
+
"S-book": 22,
|
69 |
+
"S-company": 23,
|
70 |
+
"S-game": 24,
|
71 |
+
"S-government": 25,
|
72 |
+
"S-movie": 26,
|
73 |
+
"S-name": 27,
|
74 |
+
"S-organization": 28,
|
75 |
+
"S-position": 29,
|
76 |
+
"S-scene": 30,
|
77 |
+
"[PAD]": 31
|
78 |
+
},
|
79 |
+
"layer_norm_eps": 1e-12,
|
80 |
+
"max_position_embeddings": 512,
|
81 |
+
"model_type": "bert",
|
82 |
+
"num_attention_heads": 12,
|
83 |
+
"num_hidden_layers": 12,
|
84 |
+
"pad_token_id": 0,
|
85 |
+
"vocab_size": 21128
|
86 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:46120dc831993dcdb0d632f490a436dce728c51e22b856e869aa6f596e2d3d25
|
3 |
+
size 406892015
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tf_model.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a4e102ef9499842ca9ee571474bfc829a794440deda72cd47f758e7d0e50ac71
|
3 |
+
size 407074912
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "do_basic_tokenize": true, "never_split": null, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "special_tokens_map_file": null, "tokenizer_file": null}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|