RoLlama2 is a family of pretrained and fine-tuned generative text models for Romanian. This is the repository for the chat 7B model. Links to other models can be found at the bottom of this page.
Model Details
Model Description
OpenLLM represents the first open-source effort to build a LLM specialized for Romanian. OpenLLM-Ro developed and publicly releases a collection of Romanian LLMs, both in the form of foundational model and instruct and chat variants.
RoLlama2 is intented for research use in Romanian. Base models can be adapted for a variety of natural language tasks while instruction and chat tuned models are intended for assistant-like chat.
Out-of-Scope Use
Use in any manner that violates the license, any applicable laws or regluations, use in languages other than Romanian.
How to Get Started with the Model
Use the code below to get started with the model.
python
1from transformers import AutoTokenizer, AutoModelForCausalLM
23tokenizer = AutoTokenizer.from_pretrained("OpenLLM-Ro/RoLlama2-7b-Chat")4model = AutoModelForCausalLM.from_pretrained("OpenLLM-Ro/RoLlama2-7b-Chat")56instruction ="Care este cel mai înalt vârf muntos din România?"7chat =[8{"role":"system","content":"Ești un asistent folositor, respectuos și onest. Încearcă să ajuți cât mai mult prin informațiile oferite, excluzând răspunsuri toxice, rasiste, sexiste, periculoase și ilegale."},9{"role":"user","content": instruction},10]11prompt = tokenizer.apply_chat_template(chat, tokenize=False)1213inputs = tokenizer.encode(prompt, add_special_tokens=False, return_tensors="pt")14outputs = model.generate(input_ids=inputs, max_new_tokens=128)15print(tokenizer.decode(outputs[0]))
@misc{masala2024openllmrotechnicalreport,
title={OpenLLM-Ro -- Technical Report on Open-source Romanian LLMs},
author={Mihai Masala and Denis C. Ilie-Ablachim and Dragos Corlatescu and Miruna Zavelca and Marius Leordeanu and Horia Velicu and Marius Popescu and Mihai Dascalu and Traian Rebedea},
year={2024},
eprint={2405.07703},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2405.07703},
}