leonardorigutini azugarini commited on
Commit
3419aa6
1 Parent(s): 4915d33

Update README.md (#24)

Browse files

- Update README.md (6f06c708b7093d314010eaf9d8fcd8c28ec008f2)


Co-authored-by: Andrea Zugarini <azugarini@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +88 -1
README.md CHANGED
@@ -64,4 +64,91 @@ BUSiness Transaction Entity Recognition dataset.
64
 
65
  BUSTER is an Entity Recognition (ER) benchmark for entities related to business transactions. It consists of a gold corpus of
66
  3779 manually annotated documents on financial transactions that were randomly divided into 5 folds,
67
- plus an additional silver corpus of 6196 automatically annotated documents that were created by the model-optimized RoBERTa system.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
  BUSTER is an Entity Recognition (ER) benchmark for entities related to business transactions. It consists of a gold corpus of
66
  3779 manually annotated documents on financial transactions that were randomly divided into 5 folds,
67
+ plus an additional silver corpus of 6196 automatically annotated documents that were created by the model-optimized RoBERTa system.
68
+
69
+ ### Data Splits Statistics
70
+ <table border="1" cellspacing="0" cellpadding="5" style="border-collapse: collapse; width: 100%;">
71
+ <thead>
72
+ <tr>
73
+ <th></th>
74
+ <th></th>
75
+ <th colspan="6" style="text-align:center;">Gold</th>
76
+ <th>Silver</th>
77
+ </tr>
78
+ <tr>
79
+ <th></th>
80
+ <th></th>
81
+ <th>fold 1</th>
82
+ <th>fold 2</th>
83
+ <th>fold 3</th>
84
+ <th>fold 4</th>
85
+ <th>fold 5</th>
86
+ <th>Total</th>
87
+ <th>Total</th>
88
+ </tr>
89
+ </thead>
90
+ <tbody>
91
+ <tr>
92
+ <td></td>
93
+ <td>N. Docs</td>
94
+ <td>753</td>
95
+ <td>759</td>
96
+ <td>758</td>
97
+ <td>755</td>
98
+ <td>754</td>
99
+ <td>3779</td>
100
+ <td>6196</td>
101
+ </tr>
102
+ <tr>
103
+ <td></td>
104
+ <td>N. Tokens</td>
105
+ <td>685K</td>
106
+ <td>680K</td>
107
+ <td>687K</td>
108
+ <td>697K</td>
109
+ <td>688K</td>
110
+ <td>3437K</td>
111
+ <td>5647K</td>
112
+ </tr>
113
+ <tr>
114
+ <td></td>
115
+ <td>N. Annotations</td>
116
+ <td>4119</td>
117
+ <td>4267</td>
118
+ <td>4100</td>
119
+ <td>4103</td>
120
+ <td>4163</td>
121
+ <td>20752</td>
122
+ <td>33272</td>
123
+ </tr>
124
+ </tbody>
125
+ </table>
126
+
127
+
128
+
129
+ ### Pre-print
130
+ You can find the pre-print [here](https://arxiv.org/abs/2402.09916).
131
+
132
+ ### Citation Information
133
+ If you use BUSTER in your work, please cite us:
134
+
135
+ ```
136
+ @inproceedings{zugarini-etal-2023-buster,
137
+ title = "{BUSTER}: a {``}{BUS}iness Transaction Entity Recognition{''} dataset",
138
+ author = "Zugarini, Andrea and
139
+ Zamai, Andrew and
140
+ Ernandes, Marco and
141
+ Rigutini, Leonardo",
142
+ editor = "Wang, Mingxuan and
143
+ Zitouni, Imed",
144
+ booktitle = "Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing: Industry Track",
145
+ month = dec,
146
+ year = "2023",
147
+ address = "Singapore",
148
+ publisher = "Association for Computational Linguistics",
149
+ url = "https://aclanthology.org/2023.emnlp-industry.57",
150
+ doi = "10.18653/v1/2023.emnlp-industry.57",
151
+ pages = "605--611",
152
+ abstract = "Albeit Natural Language Processing has seen major breakthroughs in the last few years, transferring such advances into real-world business cases can be challenging. One of the reasons resides in the displacement between popular benchmarks and actual data. Lack of supervision, unbalanced classes, noisy data and long documents often affect real problems in vertical domains such as finance, law and health. To support industry-oriented research, we present BUSTER, a BUSiness Transaction Entity Recognition dataset. The dataset consists of 3779 manually annotated documents on financial transactions. We establish several baselines exploiting both general-purpose and domain-specific language models. The best performing model is also used to automatically annotate 6196 documents, which we release as an additional silver corpus to BUSTER.",
153
+ }
154
+ ```