Shaltiel commited on
Commit
91514a1
1 Parent(s): 4680aa1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -0
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