added the tokenizer
Browse files- README.md +13 -13
- tokenizer.json +0 -0
- tokenizer_config.json +44 -5
- vocab.txt +0 -0
README.md
CHANGED
@@ -1,4 +1,17 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
model-index:
|
3 |
- name: Sociovestix/US-CA
|
4 |
results:
|
@@ -20,19 +33,6 @@ model-index:
|
|
20 |
name: f1 macro
|
21 |
args:
|
22 |
average: macro
|
23 |
-
widget:
|
24 |
-
- text: "Great New World Equity LLC"
|
25 |
-
- text: "Jerome J Glaser DBA International Curtain Call"
|
26 |
-
- text: "PICKERING INTERNATIONAL, INC."
|
27 |
-
- text: "R & S BEVERAGE COMPANY, A CALIFORNIA LIMITED PARTNERSHIP"
|
28 |
-
- text: "Kehilla Community Synagogue and School"
|
29 |
-
- text: "Temarry Recycling, Inc."
|
30 |
-
- text: "Jacobus De Groot Dairy"
|
31 |
-
- text: "United Brands Products Design Development and Marketing, Inc."
|
32 |
-
- text: "GREEN VALLEY COMMUNITY CHURCH"
|
33 |
-
- text: "Sierra Central Credit Union"
|
34 |
-
- text: "Tri Counties Bank"
|
35 |
-
- text: "Lowkey Community LLC"
|
36 |
---
|
37 |
|
38 |
# LENU - Legal Entity Name Understanding for US California
|
|
|
1 |
---
|
2 |
+
widget:
|
3 |
+
- text: Great New World Equity LLC
|
4 |
+
- text: Jerome J Glaser DBA International Curtain Call
|
5 |
+
- text: PICKERING INTERNATIONAL, INC.
|
6 |
+
- text: R & S BEVERAGE COMPANY, A CALIFORNIA LIMITED PARTNERSHIP
|
7 |
+
- text: Kehilla Community Synagogue and School
|
8 |
+
- text: Temarry Recycling, Inc.
|
9 |
+
- text: Jacobus De Groot Dairy
|
10 |
+
- text: United Brands Products Design Development and Marketing, Inc.
|
11 |
+
- text: GREEN VALLEY COMMUNITY CHURCH
|
12 |
+
- text: Sierra Central Credit Union
|
13 |
+
- text: Tri Counties Bank
|
14 |
+
- text: Lowkey Community LLC
|
15 |
model-index:
|
16 |
- name: Sociovestix/US-CA
|
17 |
results:
|
|
|
33 |
name: f1 macro
|
34 |
args:
|
35 |
average: macro
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
---
|
37 |
|
38 |
# LENU - Legal Entity Name Understanding for US California
|
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
|
|