Instructions to use QuantFactory/RoLlama2-7b-Base-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use QuantFactory/RoLlama2-7b-Base-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="QuantFactory/RoLlama2-7b-Base-GGUF", filename="RoLlama2-7b-Base.Q2_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use QuantFactory/RoLlama2-7b-Base-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M
Use Docker
docker model run hf.co/QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use QuantFactory/RoLlama2-7b-Base-GGUF with Ollama:
ollama run hf.co/QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M
- Unsloth Studio new
How to use QuantFactory/RoLlama2-7b-Base-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for QuantFactory/RoLlama2-7b-Base-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for QuantFactory/RoLlama2-7b-Base-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for QuantFactory/RoLlama2-7b-Base-GGUF to start chatting
- Docker Model Runner
How to use QuantFactory/RoLlama2-7b-Base-GGUF with Docker Model Runner:
docker model run hf.co/QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M
- Lemonade
How to use QuantFactory/RoLlama2-7b-Base-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull QuantFactory/RoLlama2-7b-Base-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.RoLlama2-7b-Base-GGUF-Q4_K_M
List all available models
lemonade list
output = llm(
"Once upon a time,",
max_tokens=512,
echo=True
)
print(output)QuantFactory/RoLlama2-7b-Base-GGUF
This is quantized version of OpenLLM-Ro/RoLlama2-7b-Base created using llama.cpp
Original Model Card
Model Card for Model ID
RoLlama2 is a family of pretrained and fine-tuned generative text models for Romanian. This is the repository for the foundational 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.
- Developed by: OpenLLM-Ro
- Language(s): Romanian
- License: Llama2 Community License Agreement
- Continual pretrained from model: Llama-2-7b
Model Sources
- Repository: https://github.com/OpenLLM-Ro/llama-recipes
- Paper: https://arxiv.org/abs/2406.18266
Intended Use
Intended Use Cases
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.
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("OpenLLM-Ro/RoLlama2-7b-Base")
model = AutoModelForCausalLM.from_pretrained("OpenLLM-Ro/RoLlama2-7b-Base")
input_text = "Mihai Eminescu a fost "
input_ids = tokenizer(input_text, return_tensors="pt")
outputs = model.generate(**input_ids, max_new_tokens=100)
print(tokenizer.decode(outputs[0]))
Benchmarks
| Model | Average | ARC | MMLU | Winogrande | HellaSwag | GSM8k | TruthfulQA |
|---|---|---|---|---|---|---|---|
| Llama-2-7b | 37.11 | 36.09 | 33.67 | 57.60 | 48.00 | 5.08 | 42.23 |
| RoLlama2-7b-Base | 38.03 | 37.95 | 27.22 | 59.29 | 57.22 | 2.53 | 44.00 |
RoLlama2 Model Family
Citation
@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},
}
- Downloads last month
- 127
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
Model tree for QuantFactory/RoLlama2-7b-Base-GGUF
Base model
meta-llama/Llama-2-7b-hf
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="QuantFactory/RoLlama2-7b-Base-GGUF", filename="", )