sijunhe commited on
Commit
8e7f883
1 Parent(s): 0ae19a9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -1
README.md CHANGED
@@ -1,4 +1,37 @@
1
  ---
 
2
  library_name: paddlenlp
3
  ---
4
- # PaddlePaddle/uie-base
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
  library_name: paddlenlp
4
  ---
5
+
6
+ [![paddlenlp-banner](https://user-images.githubusercontent.com/1371212/175816733-8ec25eb0-9af3-4380-9218-27c154518258.png)](https://github.com/PaddlePaddle/PaddleNLP)
7
+
8
+ # PaddlePaddle/uie-base
9
+
10
+ **Try out our space at [https://huggingface.co/spaces/PaddlePaddle/UIE-X](https://huggingface.co/spaces/PaddlePaddle/UIE-X)!**
11
+
12
+ ## **About UIE**
13
+
14
+ Information extraction suffers from its varying targets, heterogeneous structures, and demand-specific schemas. The unified text-to-structure generation framework, namely UIE, can universally model different IE tasks, adaptively generate targeted structures, and collaboratively learn general IE abilities from different knowledge sources. Specifically, UIE uniformly encodes different extraction structures via a structured extraction language, adaptively generates target extractions via a schema-based prompt mechanism - structural schema instructor, and captures the common IE abilities via a large-scale pre-trained text-to-structure model. Experiments show that UIE achieved the state-of-the-art performance on 4 IE tasks, 13 datasets, and on all supervised, low-resource, and few-shot settings for a wide range of entity, relation, event and sentiment extraction tasks and their unification. These results verified the effectiveness, universality, and transferability of UIE.
15
+
16
+ UIE Paper: https://arxiv.org/abs/2203.12277
17
+
18
+ PaddleNLP released UIE model series for Information Extraction of texts and multi-modal documents which use the ERNIE 3.0 models as the pre-trained language models and were finetuned on a large amount of information extraction data.
19
+
20
+ - **Experimental results on text dataset**
21
+
22
+ We conducted experiments on the in-house test sets of the three different domains of Internet, medical care, and finance:
23
+
24
+ <img src="https://user-images.githubusercontent.com/11793384/209778847-0e1ad84f-bedf-4718-9658-b739ee3af3d2.png" width="80%" height="80%"> <br />
25
+
26
+ 0-shot means that no training data is directly used for prediction through paddlenlp.Taskflow, and 5-shot means that each category contains 5 pieces of labeled data for model fine-tuning. Experiments show that UIE can further improve the performance with a small amount of data (few-shot).
27
+
28
+ - **Experimental results on multimodal datasets**
29
+
30
+ We experimented on the zero-shot performance of UIE-X on the in-house multi-modal test sets in three different domains of general, financial, and medical:
31
+
32
+ <img src="https://user-images.githubusercontent.com/11793384/209779012-f3d53063-8b26-4c09-8ced-47ca75c77dc9.png" width="70%" height="70%"> <br />
33
+
34
+ The general test set contains complex samples from different fields and is the most difficult task.
35
+
36
+ > Detailed Info: https://github.com/PaddlePaddle/PaddleNLP/blob/develop/applications/information_extraction/README_en.md
37
+