djany commited on
Commit
2ad4c85
·
verified ·
1 Parent(s): 0e3d836

added the tokenizer

Browse files
Files changed (4) hide show
  1. README.md +18 -18
  2. tokenizer.json +0 -0
  3. tokenizer_config.json +44 -5
  4. vocab.txt +0 -0
README.md CHANGED
@@ -1,4 +1,22 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  model-index:
3
  - name: Sociovestix/lenu_NL
4
  results:
@@ -20,24 +38,6 @@ model-index:
20
  name: f1 macro
21
  args:
22
  average: macro
23
- widget:
24
- - text: "Acht Acht B.V."
25
- - text: "Stichting Helison"
26
- - text: "Hayman"
27
- - text: "Melkveebedrijf Leferink"
28
- - text: "Jointly"
29
- - text: "Priority Shipping C.V."
30
- - text: "Hoofd en Hart Bewindvoering"
31
- - text: "Dekker Kids Beheer N.V."
32
- - text: "PCI H. Bartholomeus"
33
- - text: "AEGON Equity Europe Beta Pool (N)"
34
- - text: "ScaleX Ventures Fund I Coöperatief U.A."
35
- - text: "Global Emerging Markets Equity Pool"
36
- - text: "Gemeente Groningen"
37
- - text: 'Onderlinge Verzekeringmaatschappij "SOM" U.A.'
38
- - text: 'Vereniging van Appartementseigenaars "Henry Dunantpark III"'
39
- - text: "Ferrovial Construction International SE"
40
- - text: "Rederij BigLift Barentsz"
41
  ---
42
 
43
  # LENU - Legal Entity Name Understanding for Netherlands
 
1
  ---
2
+ widget:
3
+ - text: Acht Acht B.V.
4
+ - text: Stichting Helison
5
+ - text: Hayman
6
+ - text: Melkveebedrijf Leferink
7
+ - text: Jointly
8
+ - text: Priority Shipping C.V.
9
+ - text: Hoofd en Hart Bewindvoering
10
+ - text: Dekker Kids Beheer N.V.
11
+ - text: PCI H. Bartholomeus
12
+ - text: AEGON Equity Europe Beta Pool (N)
13
+ - text: ScaleX Ventures Fund I Coöperatief U.A.
14
+ - text: Global Emerging Markets Equity Pool
15
+ - text: Gemeente Groningen
16
+ - text: Onderlinge Verzekeringmaatschappij "SOM" U.A.
17
+ - text: Vereniging van Appartementseigenaars "Henry Dunantpark III"
18
+ - text: Ferrovial Construction International SE
19
+ - text: Rederij BigLift Barentsz
20
  model-index:
21
  - name: Sociovestix/lenu_NL
22
  results:
 
38
  name: f1 macro
39
  args:
40
  average: macro
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  ---
42
 
43
  # LENU - Legal Entity Name Understanding for Netherlands
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": false,
5
  "mask_token": "[MASK]",
6
  "model_max_length": 512,
7
- "name_or_path": "GroNLP/bert-base-dutch-cased",
8
- "never_split": null,
9
  "pad_token": "[PAD]",
10
  "sep_token": "[SEP]",
11
- "special_tokens_map_file": "/root/.cache/huggingface/hub/models--GroNLP--bert-base-dutch-cased/snapshots/484ff5cec2ad42b434537dadd901d9b8e2b64cd2/special_tokens_map.json",
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