Commit
·
48f45b2
1
Parent(s):
2f3a794
Update README.md (#1)
Browse files- Update README.md (dd4972a87b35d6e860603b650d32641e0e3d2734)
Co-authored-by: Xiao Wang <CherryDurian@users.noreply.huggingface.co>
README.md
CHANGED
@@ -1,4 +1,36 @@
|
|
1 |
---
|
2 |
license: openrail
|
3 |
---
|
4 |
-
https://github.com/BeyonderXX/InstructUIE
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: openrail
|
3 |
---
|
4 |
+
https://github.com/BeyonderXX/InstructUIE
|
5 |
+
|
6 |
+
# InstructUIE
|
7 |
+
Large language models have unlocked strong multi-task capabilities from reading instructive prompts.
|
8 |
+
However, recent studies have shown that existing large models still have difficulty with information extraction tasks.
|
9 |
+
For example, gpt-3.5-turbo achieved an F1 score of 18.22 on the Ontonotes dataset, which is significantly lower than the state-of-the-art performance.
|
10 |
+
In this paper, we propose InstructUIE, a unified information extraction framework based on instruction tuning, which can uniformly model various information extraction tasks and capture the inter-task dependency.
|
11 |
+
To validate the proposed method, we introduce IE INSTRUCTIONS, a benchmark of 32 diverse information extraction datasets in a unified text-to-text format with expert-written instructions.
|
12 |
+
Experimental results demonstrate that our method achieves comparable performance to Bert in supervised settings and significantly outperforms the state-of-the-art and gpt3.5 in zero-shot settings.
|
13 |
+
|
14 |
+
|
15 |
+
## Data
|
16 |
+
|
17 |
+
Our models are trained and evaluated on **IE INSTRUCTIONS**.
|
18 |
+
You can download the data from [Baidu NetDisk](https://pan.baidu.com/s/1R0KqeyjPHrsGcPqsbsh1XA?from=init&pwd=ybkt) or [Google Drive](https://drive.google.com/file/d/1T-5IbocGka35I7X3CE6yKe5N_Xg2lVKT/view?usp=share_link).
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
## Citation
|
24 |
+
|
25 |
+
If you are using InstructUIE for your work, please kindly cite our paper:
|
26 |
+
|
27 |
+
```latex
|
28 |
+
@article{wang2023instructuie,
|
29 |
+
title={InstructUIE: Multi-task Instruction Tuning for Unified Information Extraction},
|
30 |
+
author={Wang, Xiao and Zhou, Weikang and Zu, Can and Xia, Han and Chen, Tianze and Zhang, Yuansen and Zheng, Rui and Ye, Junjie and Zhang, Qi and Gui, Tao and others},
|
31 |
+
journal={arXiv preprint arXiv:2304.08085},
|
32 |
+
year={2023}
|
33 |
+
}
|
34 |
+
```
|
35 |
+
|
36 |
+
|