Update README.md
Browse files
README.md
CHANGED
@@ -84,4 +84,18 @@ messages = [{"role": "user", "content": "Translate the following English source
|
|
84 |
input_ids = pipe.tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True)
|
85 |
outputs = pipe(messages, max_new_tokens=256, do_sample=False)
|
86 |
print(outputs[0]["generated_text"])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
```
|
|
|
84 |
input_ids = pipe.tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True)
|
85 |
outputs = pipe(messages, max_new_tokens=256, do_sample=False)
|
86 |
print(outputs[0]["generated_text"])
|
87 |
+
```
|
88 |
+
|
89 |
+
# Citation
|
90 |
+
If you use this model please cite our paper:
|
91 |
+
```
|
92 |
+
@misc{rei2025towerplus,
|
93 |
+
title={Tower+: Bridging Generality and Translation Specialization in Multilingual LLMs},
|
94 |
+
author={Ricardo Rei and Nuno M. Guerreiro and José Pombal and João Alves and Pedro Teixeirinha and Amin Farajian and André F. T. Martins},
|
95 |
+
year={2025},
|
96 |
+
eprint={2506.17080},
|
97 |
+
archivePrefix={arXiv},
|
98 |
+
primaryClass={cs.CL},
|
99 |
+
url={https://arxiv.org/abs/2506.17080},
|
100 |
+
}
|
101 |
```
|