Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,69 @@
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
3 |
+
language:
|
4 |
+
- he
|
5 |
+
inference: false
|
6 |
---
|
7 |
+
# DictaBERT: A State-of-the-Art BERT Suite for Modern Hebrew
|
8 |
+
|
9 |
+
State-of-the-art language model for Hebrew, released [here](https://arxiv.org/abs/2308.16687).
|
10 |
+
|
11 |
+
This is the fine-tuned model for the joint parsing of the following tasks:
|
12 |
+
|
13 |
+
- Prefix Segmentation
|
14 |
+
- Morphological Disabmgiuation
|
15 |
+
- Lexicographical Analysis (Lemmatization)
|
16 |
+
- Syntactical Parsing (Dependency-Tree)
|
17 |
+
- Named-Entity Recognition
|
18 |
+
|
19 |
+
For the bert-base models for other tasks, see [here](https://huggingface.co/collections/dicta-il/dictabert-6588e7cc08f83845fc42a18b).
|
20 |
+
|
21 |
+
Sample usage:
|
22 |
+
|
23 |
+
```python
|
24 |
+
from transformers import AutoModel, AutoTokenizer
|
25 |
+
|
26 |
+
tokenizer = AutoTokenizer.from_pretrained('dicta-il/dictabert-joint')
|
27 |
+
model = AutoModel.from_pretrained('dicta-il/dictabert-joint', trust_remote_code=True)
|
28 |
+
|
29 |
+
model.eval()
|
30 |
+
|
31 |
+
sentence = 'ืืฉื ืช 1948 ืืฉืืื ืืคืจืื ืงืืฉืื ืืช ืืืืืืื ืืคืืกืื ืืชืืช ืืืชืืืืืช ืืืื ืืช ืืืื ืืคืจืกื ืืืืจืื ืืืืืจืืกืืืื'
|
32 |
+
print(model.predict([sentence], tokenizer))
|
33 |
+
```
|
34 |
+
|
35 |
+
Output:
|
36 |
+
```json
|
37 |
+
TBD
|
38 |
+
```
|
39 |
+
|
40 |
+
|
41 |
+
## Citation
|
42 |
+
|
43 |
+
If you use DictaBERT in your research, please cite ```DictaBERT: A State-of-the-Art BERT Suite for Modern Hebrew```
|
44 |
+
|
45 |
+
**BibTeX:**
|
46 |
+
|
47 |
+
```bibtex
|
48 |
+
@misc{shmidman2023dictabert,
|
49 |
+
title={DictaBERT: A State-of-the-Art BERT Suite for Modern Hebrew},
|
50 |
+
author={Shaltiel Shmidman and Avi Shmidman and Moshe Koppel},
|
51 |
+
year={2023},
|
52 |
+
eprint={2308.16687},
|
53 |
+
archivePrefix={arXiv},
|
54 |
+
primaryClass={cs.CL}
|
55 |
+
}
|
56 |
+
```
|
57 |
+
|
58 |
+
## License
|
59 |
+
|
60 |
+
Shield: [![CC BY 4.0][cc-by-shield]][cc-by]
|
61 |
+
|
62 |
+
This work is licensed under a
|
63 |
+
[Creative Commons Attribution 4.0 International License][cc-by].
|
64 |
+
|
65 |
+
[![CC BY 4.0][cc-by-image]][cc-by]
|
66 |
+
|
67 |
+
[cc-by]: http://creativecommons.org/licenses/by/4.0/
|
68 |
+
[cc-by-image]: https://i.creativecommons.org/l/by/4.0/88x31.png
|
69 |
+
[cc-by-shield]: https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg
|