added the tokenizer
Browse files- README.md +10 -10
- tokenizer.json +0 -0
- tokenizer_config.json +44 -5
- vocab.txt +0 -0
README.md
CHANGED
@@ -1,4 +1,14 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
model-index:
|
3 |
- name: Sociovestix/lenu_US-NY
|
4 |
results:
|
@@ -20,16 +30,6 @@ model-index:
|
|
20 |
name: f1 macro
|
21 |
args:
|
22 |
average: macro
|
23 |
-
widget:
|
24 |
-
- text: "949-959 SOUTHERN BLVD LLC"
|
25 |
-
- text: "Lumico Life Insurance Company of New York"
|
26 |
-
- text: "BNP PARIBAS ASSET MANAGEMENT USA HOLDINGS, INC."
|
27 |
-
- text: "QB ASSOCIATES, L.P."
|
28 |
-
- text: "THE LOTOS CLUB"
|
29 |
-
- text: "LOMBARD & GELIBETER LLP"
|
30 |
-
- text: "Walden Savings Bank"
|
31 |
-
- text: "Adirondack Bank"
|
32 |
-
- text: "The North Country Savings Bank"
|
33 |
---
|
34 |
|
35 |
# LENU - Legal Entity Name Understanding for US New York
|
|
|
1 |
---
|
2 |
+
widget:
|
3 |
+
- text: 949-959 SOUTHERN BLVD LLC
|
4 |
+
- text: Lumico Life Insurance Company of New York
|
5 |
+
- text: BNP PARIBAS ASSET MANAGEMENT USA HOLDINGS, INC.
|
6 |
+
- text: QB ASSOCIATES, L.P.
|
7 |
+
- text: THE LOTOS CLUB
|
8 |
+
- text: LOMBARD & GELIBETER LLP
|
9 |
+
- text: Walden Savings Bank
|
10 |
+
- text: Adirondack Bank
|
11 |
+
- text: The North Country Savings Bank
|
12 |
model-index:
|
13 |
- name: Sociovestix/lenu_US-NY
|
14 |
results:
|
|
|
30 |
name: f1 macro
|
31 |
args:
|
32 |
average: macro
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
---
|
34 |
|
35 |
# LENU - Legal Entity Name Understanding for US New York
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -1,14 +1,53 @@
|
|
1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
"cls_token": "[CLS]",
|
3 |
-
"do_basic_tokenize": true,
|
4 |
"do_lower_case": true,
|
5 |
"mask_token": "[MASK]",
|
6 |
-
"model_max_length":
|
7 |
-
"name_or_path": "yiyanghkust/finbert-pretrain",
|
8 |
-
"never_split": null,
|
9 |
"pad_token": "[PAD]",
|
10 |
"sep_token": "[SEP]",
|
11 |
-
"special_tokens_map_file": null,
|
12 |
"strip_accents": null,
|
13 |
"tokenize_chinese_chars": true,
|
14 |
"tokenizer_class": "BertTokenizer",
|
|
|
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": true,
|
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",
|
vocab.txt
CHANGED
The diff for this file is too large to render.
See raw diff
|
|