Instructions to use OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28") model = AutoModelForCausalLM.from_pretrained("OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28
- SGLang
How to use OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28 with Docker Model Runner:
docker model run hf.co/OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28
Model Card for Model ID
RoGemma is a family of pretrained and fine-tuned generative text models for Romanian. This is the repository for the instruct 7B model. Links to other models can be found at the bottom of this page.
Model Details
Model Description
OpenLLM-Ro 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.
- Developed by: OpenLLM-Ro
- Language(s): Romanian
- License: cc-by-nc-4.0
- Finetuned from model: gemma-7b
- Trained using: RoAlpaca, RoAlpacaGPT4, RoDolly, RoSelfInstruct, RoNoRobots, RoOrca, RoCamel.
Model Sources
- Repository: https://github.com/OpenLLM-Ro/LLaMA-Factory
- Paper: https://arxiv.org/abs/2406.18266
Intended Use
Intended Use Cases
RoGemma 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.
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28")
model = AutoModelForCausalLM.from_pretrained("OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28")
instruction = "Ce jocuri de societate pot juca cu prietenii mei?"
chat = [
{"role": "user", "content": instruction},
]
prompt = tokenizer.apply_chat_template(chat, tokenize=False, system_message="")
inputs = tokenizer.encode(prompt, add_special_tokens=False, return_tensors="pt")
outputs = model.generate(input_ids=inputs, max_new_tokens=128)
print(tokenizer.decode(outputs[0]))
Academic Benchmarks
| Model | |||||||
| gemma-1.1-7b-it | |||||||
| RoGemma-7b-Instruct-2024-06-28 | |||||||
| RoGemma-7b-Instruct-2024-10-09 | |||||||
| RoGemma-7b-Instruct-DPO-2024-10-09 |
Downstream tasks
| Model | (Macro F1) |
(Macro F1) |
(Macro F1) |
(Macro F1) |
(Bleu) |
(Bleu) |
(Bleu) |
(Bleu) |
| gemma-1.1-7b-it | ||||||||
| RoGemma-7b-Instruct-2024-06-28 | ||||||||
| RoGemma-7b-Instruct-2024-10-09 | ||||||||
| RoGemma-7b-Instruct-DPO-2024-10-09 | ||||||||
| Model | ||||||||
| gemma-1.1-7b-it | ||||||||
| RoGemma-7b-Instruct-2024-06-28 | ||||||||
| RoGemma-7b-Instruct-2024-10-09 | ||||||||
| RoGemma-7b-Instruct-DPO-2024-10-09 | ||||||||
MT-Bench
| Model | ||||
| gemma-1.1-7b-it | ||||
| RoGemma-7b-Instruct-2024-06-28 | ||||
| RoGemma-7b-Instruct-2024-10-09 | ||||
| RoGemma-7b-Instruct-DPO-2024-10-09 |
RoCulturaBench
| Model | ||
| gemma-1.1-7b-it | ||
| RoGemma-7b-Instruct-2024-06-28 | ||
| RoGemma-7b-Instruct-2024-10-09 | ||
| RoGemma-7b-Instruct-DPO-2024-10-09 |
RoGemma Model Family
| Model | Link |
|---|---|
| RoGemma-7b-Instruct-2024-06-28 | link |
| RoGemma-7b-Instruct-2024-10-09 | link |
| RoGemma-7b-Instruct-DPO-2024-10-09 | link |
Citation
@inproceedings{masala-etal-2024-vorbesti,
title = "``Vorbe\c{s}ti Rom{\^a}ne\c{s}te?'' A Recipe to Train Powerful {R}omanian {LLM}s with {E}nglish Instructions",
author = "Masala, Mihai and Ilie-Ablachim, Denis and Dima, Alexandru and Corlatescu, Dragos Georgian and Zavelca, Miruna-Andreea and Olaru, Ovio and Terian, Simina-Maria and Terian, Andrei and Leordeanu, Marius and Velicu, Horia and Popescu, Marius and Dascalu, Mihai and Rebedea, Traian",
editor = "Al-Onaizan, Yaser and Bansal, Mohit and Chen, Yun-Nung",
booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2024",
month = nov,
year = "2024",
address = "Miami, Florida, USA",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2024.findings-emnlp.681/",
doi = "10.18653/v1/2024.findings-emnlp.681",
pages = "11632--11647"
}
- Downloads last month
- 10
Model tree for OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28
Datasets used to train OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28
OpenLLM-Ro/ro_sft_norobots
OpenLLM-Ro/ro_sft_alpaca_gpt4
Collection including OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28
Paper for OpenLLM-Ro/RoGemma-7b-Instruct-2024-06-28
Evaluation results
- Score on RoMT-Benchself-reported5.260
- Score on RoCulturaBenchself-reported3.260
- Average accuracy on Romanian_Academic_Benchmarksself-reported53.410
- Average accuracy on OpenLLM-Ro/ro_arc_challengeself-reported52.440
- Average accuracy on OpenLLM-Ro/ro_mmluself-reported54.440
- Average accuracy on OpenLLM-Ro/ro_winograndeself-reported69.360
- Average accuracy on OpenLLM-Ro/ro_hellaswagself-reported61.960
- Average accuracy on OpenLLM-Ro/ro_gsm8kself-reported31.060