Views
No views yet
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3tokenizer = AutoTokenizer.from_pretrained("OpenLLM-Ro/RoGemma2-9b-Instruct-DPO")
4model = AutoModelForCausalLM.from_pretrained("OpenLLM-Ro/RoGemma2-9b-Instruct-DPO")
5
6instruction = "Ce jocuri de societate pot juca cu prietenii mei?"
7chat = [
8 {"role": "user", "content": instruction},
9 ]
10prompt = tokenizer.apply_chat_template(chat, tokenize=False, system_message="")
11
12inputs = tokenizer.encode(prompt, add_special_tokens=False, return_tensors="pt")
13outputs = model.generate(input_ids=inputs, max_new_tokens=128)
14print(tokenizer.decode(outputs[0]))| Model | |||||||
| gemma-2-9b-it | |||||||
| RoGemma2-9b-Instruct-2024-10-09 | |||||||
| RoGemma2-9b-Instruct-2025-04-23 | |||||||
| RoGemma2-9b-Instruct-DPO-2024-10-09 | |||||||
| RoGemma2-9b-Instruct-DPO-2025-04-23 |
| Model | (Macro F1) | (Macro F1) | (Macro F1) | (Macro F1) | (Bleu) | (Bleu) | (Bleu) | (Bleu) |
| gemma-2-9b-it | ||||||||
| RoGemma2-9b-Instruct-2024-10-09 | ||||||||
| RoGemma2-9b-Instruct-2025-04-23 | ||||||||
| RoGemma2-9b-Instruct-DPO-2024-10-09 | ||||||||
| RoGemma2-9b-Instruct-DPO-2025-04-23 |
| Model | ||||||||
| gemma-2-9b-it | ||||||||
| RoGemma2-9b-Instruct-2024-10-09 | ||||||||
| RoGemma2-9b-Instruct-2025-04-23 | ||||||||
| RoGemma2-9b-Instruct-DPO-2024-10-09 | ||||||||
| RoGemma2-9b-Instruct-DPO-2025-04-23 |
| Model | ||||
| gemma-2-9b-it | ||||
| RoGemma2-9b-Instruct-2024-10-09 | ||||
| RoGemma2-9b-Instruct-2025-04-23 | ||||
| RoGemma2-9b-Instruct-DPO-2024-10-09 | ||||
| RoGemma2-9b-Instruct-DPO-2025-04-23 |
| Model | ||
| gemma-2-9b-it | ||
| RoGemma2-9b-Instruct-2024-10-09 | ||
| RoGemma2-9b-Instruct-2025-04-23 | ||
| RoGemma2-9b-Instruct-DPO-2024-10-09 | ||
| RoGemma2-9b-Instruct-DPO-2025-04-23 |
| Model | Link |
|---|---|
| RoGemma2-9b-Instruct-2024-10-09 | link |
| RoGemma2-9b-Instruct-2025-04-23 | link |
| RoGemma2-9b-Instruct-DPO-2024-10-09 | link |
| RoGemma2-9b-Instruct-DPO-2025-04-23 | link |
@misc{masala2024vorbecstiromanecsterecipetrain,
title={"Vorbe\c{s}ti Rom\^ane\c{s}te?" A Recipe to Train Powerful Romanian LLMs with English Instructions},
author={Mihai Masala and Denis C. Ilie-Ablachim and Alexandru Dima and Dragos Corlatescu and Miruna Zavelca and Ovio Olaru and Simina Terian-Dan and Andrei Terian-Dan and Marius Leordeanu and Horia Velicu and Marius Popescu and Mihai Dascalu and Traian Rebedea},
year={2024},
eprint={2406.18266},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2406.18266},
}