Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,46 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- ar
|
5 |
+
library_name: transformers
|
6 |
---
|
7 |
+
# AREEj: Arabic Relation Extraction with Evidence
|
8 |
+
You can use AREEj to extract relations from Arabic documents. Each document can contain multiple relations, and each relation contains six elements, the source, target, their named entities, relation type between them, and evidence. The evidence is used for two reasons: improving the Relation Extraction task, and explaining the LLM's predictions. You can also use it as an edge between the related entities.
|
9 |
+
|
10 |
+
AREEj was introduced in the Proceedings of The Second Arabic Natural Language Processing Conference paper [AREEj: Arabic Relation Extraction with Evidence](https://aclanthology.org/2024.arabicnlp-1.6/).
|
11 |
+
|
12 |
+
|
13 |
+
|
14 |
+
```
|
15 |
+
@inproceedings{mraikhat-etal-2024-areej,
|
16 |
+
title = "{AREE}j: {A}rabic Relation Extraction with Evidence",
|
17 |
+
author = "Mraikhat, Osama and
|
18 |
+
Hamoud, Hadi and
|
19 |
+
Zaraket, Fadi",
|
20 |
+
editor = "Habash, Nizar and
|
21 |
+
Bouamor, Houda and
|
22 |
+
Eskander, Ramy and
|
23 |
+
Tomeh, Nadi and
|
24 |
+
Abu Farha, Ibrahim and
|
25 |
+
Abdelali, Ahmed and
|
26 |
+
Touileb, Samia and
|
27 |
+
Hamed, Injy and
|
28 |
+
Onaizan, Yaser and
|
29 |
+
Alhafni, Bashar and
|
30 |
+
Antoun, Wissam and
|
31 |
+
Khalifa, Salam and
|
32 |
+
Haddad, Hatem and
|
33 |
+
Zitouni, Imed and
|
34 |
+
AlKhamissi, Badr and
|
35 |
+
Almatham, Rawan and
|
36 |
+
Mrini, Khalil",
|
37 |
+
booktitle = "Proceedings of The Second Arabic Natural Language Processing Conference",
|
38 |
+
month = aug,
|
39 |
+
year = "2024",
|
40 |
+
address = "Bangkok, Thailand",
|
41 |
+
publisher = "Association for Computational Linguistics",
|
42 |
+
url = "https://aclanthology.org/2024.arabicnlp-1.6",
|
43 |
+
pages = "67--72",
|
44 |
+
abstract = "Relational entity extraction is key in building knowledge graphs. A relational entity has a source, a tail and atype. In this paper, we consider Arabic text and introduce evidence enrichment which intuitivelyinforms models for better predictions. Relational evidence is an expression in the textthat explains how sources and targets relate. {\%}It also provides hints from which models learn. This paper augments the existing relational extraction dataset with evidence annotation to its 2.9-million Arabic relations.We leverage the augmented dataset to build , a relation extraction with evidence model from Arabic documents. The evidence augmentation model we constructed to complete the dataset achieved .82 F1-score (.93 precision, .73 recall). The target outperformed SOTA mREBEL with .72 F1-score (.78 precision, .66 recall).",
|
45 |
+
}
|
46 |
+
```
|