Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,32 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
+
|
5 |
+
# CAMeLBERT-UD-parser
|
6 |
+
|
7 |
+
## Model description
|
8 |
+
The **CAMeLBERT-UD-parser** is a neural dependency parsing model for Arabic text, specifically designed for the Universal Dependencies (UD) dependency formalism.
|
9 |
+
It is based on the Biaffine Attention Dependency Parsing model introduced by [Dozat and Manning (2017)](https://arxiv.org/pdf/1611.01734.pdf) and implemented in
|
10 |
+
[SuPar](https://github.com/yzhangcs/parser), which has been shown to be very effective for dependency parsing in many languages.
|
11 |
+
The model is trained on the NUDAR (NYUAD Universal Dependency for Arabic) train set, which is a large Arabic corpus annotated with UD dependency labels.
|
12 |
+
The model uses a CamelBERT-MSA word embedding layer, which is a pre-trained language model that has been trained on a massive dataset of Arabic text.
|
13 |
+
The model was introduced in our paper "CamelParser2.0: A State-of-the-Art Dependency Parser for Arabic".
|
14 |
+
The paper describes the model in detail and evaluates its performance on various Arabic dependency parsing tasks.
|
15 |
+
|
16 |
+
|
17 |
+
## Intended uses
|
18 |
+
The CAMeLBERT-UD-parser is shipped with the [CAMeLParser](https://github.com/CAMeL-Lab/camel_parser) as one of the default parsing models,
|
19 |
+
and can be selected when parsing texts using the UD formalism.
|
20 |
+
|
21 |
+
## Citation
|
22 |
+
```bibtex
|
23 |
+
@inproceedings{Elshabrawy:2023:camelparser,
|
24 |
+
title = "{CamelParser2.0: A State-of-the-Art Dependency Parser for Arabic}",
|
25 |
+
author = {Ahmed Elshabrawy and
|
26 |
+
Muhammed AbuOdeh and
|
27 |
+
Go Inoue and
|
28 |
+
Nizar Habash} ,
|
29 |
+
booktitle = {Proceedings of The First Arabic Natural Language Processing Conference (ArabicNLP 2023)},
|
30 |
+
year = "2023"
|
31 |
+
}
|
32 |
+
```
|