Shaltiel commited on
Commit
b0e1a9c
1 Parent(s): 3b6e599

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -7
README.md CHANGED
@@ -16,8 +16,8 @@ Sample usage:
16
  import torch
17
  from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
18
 
19
- tokenizer = AutoTokenizer.from_pretrained('dicta-il/mT5-XL-HeQ-ft')
20
- model = AutoModelForSeq2SeqLM.from_pretrained('dicta-il/mT5-XL-HeQ-ft')
21
 
22
  model.eval()
23
 
@@ -47,12 +47,19 @@ Output:
47
 
48
  ## Citation
49
 
50
- If you use `mT5-XL-HeQ-ft` in your research, please cite ```citation to be added```
51
 
52
  **BibTeX:**
53
 
54
  ```bibtex
55
- citation to be added
 
 
 
 
 
 
 
56
  ```
57
 
58
  ## License
@@ -68,6 +75,3 @@ This work is licensed under a
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
70
 
71
-
72
-
73
-
 
16
  import torch
17
  from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
18
 
19
+ tokenizer = AutoTokenizer.from_pretrained('dicta-il/mt5-xl-heq-ft')
20
+ model = AutoModelForSeq2SeqLM.from_pretrained('dicta-il/mt5-xl-heq-ft')
21
 
22
  model.eval()
23
 
 
47
 
48
  ## Citation
49
 
50
+ If you use `mt5-xl-heq-ft` in your research, please cite ```DictaBERT: A State-of-the-Art BERT Suite for Modern Hebrew```
51
 
52
  **BibTeX:**
53
 
54
  ```bibtex
55
+ @misc{shmidman2023dictabert,
56
+ title={DictaBERT: A State-of-the-Art BERT Suite for Modern Hebrew},
57
+ author={Shaltiel Shmidman and Avi Shmidman and Moshe Koppel},
58
+ year={2023},
59
+ eprint={2308.16687},
60
+ archivePrefix={arXiv},
61
+ primaryClass={cs.CL}
62
+ }
63
  ```
64
 
65
  ## License
 
75
  [cc-by-image]: https://i.creativecommons.org/l/by/4.0/88x31.png
76
  [cc-by-shield]: https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg
77