Instructions to use tiararodney/EuroLLM-9B-Instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tiararodney/EuroLLM-9B-Instruct with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf tiararodney/EuroLLM-9B-Instruct:Q4_K_M # Run inference directly in the terminal: llama cli -hf tiararodney/EuroLLM-9B-Instruct:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tiararodney/EuroLLM-9B-Instruct:Q4_K_M # Run inference directly in the terminal: llama cli -hf tiararodney/EuroLLM-9B-Instruct: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 tiararodney/EuroLLM-9B-Instruct:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf tiararodney/EuroLLM-9B-Instruct: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 tiararodney/EuroLLM-9B-Instruct:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf tiararodney/EuroLLM-9B-Instruct:Q4_K_M
Use Docker
docker model run hf.co/tiararodney/EuroLLM-9B-Instruct:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use tiararodney/EuroLLM-9B-Instruct with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tiararodney/EuroLLM-9B-Instruct" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tiararodney/EuroLLM-9B-Instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tiararodney/EuroLLM-9B-Instruct:Q4_K_M
- Ollama
How to use tiararodney/EuroLLM-9B-Instruct with Ollama:
ollama run hf.co/tiararodney/EuroLLM-9B-Instruct:Q4_K_M
- Unsloth Studio
How to use tiararodney/EuroLLM-9B-Instruct 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 tiararodney/EuroLLM-9B-Instruct 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 tiararodney/EuroLLM-9B-Instruct to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tiararodney/EuroLLM-9B-Instruct to start chatting
- Docker Model Runner
How to use tiararodney/EuroLLM-9B-Instruct with Docker Model Runner:
docker model run hf.co/tiararodney/EuroLLM-9B-Instruct:Q4_K_M
- Lemonade
How to use tiararodney/EuroLLM-9B-Instruct with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tiararodney/EuroLLM-9B-Instruct:Q4_K_M
Run and chat with the model
lemonade run user.EuroLLM-9B-Instruct-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -35
- EuroLLM-9B-Instruct-Q4_K_M.gguf +3 -0
- EuroLLM-9B-Instruct-bf16.gguf +3 -0
- README.md +37 -0
.gitattributes
CHANGED
|
@@ -1,35 +1 @@
|
|
| 1 |
-
*.
|
| 2 |
-
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
-
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
-
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
-
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
-
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
-
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
-
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
-
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
-
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
-
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
-
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
-
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
-
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
-
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
-
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
-
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
-
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
-
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
-
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
-
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
-
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
-
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
-
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
-
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
-
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
-
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
-
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
-
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
-
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
-
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
-
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
-
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
-
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
-
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 1 |
+
*.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
EuroLLM-9B-Instruct-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ce87c207c787d957df704e32b99f5493a0db40ec553fabeabc29577aa250a8a
|
| 3 |
+
size 5582838336
|
EuroLLM-9B-Instruct-bf16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b77f05c1c385670a36cf4bfecd0956526a736a59dfd1452d59fff87bd09e51d5
|
| 3 |
+
size 18308422208
|
README.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: utter-project/EuroLLM-9B-Instruct
|
| 3 |
license: apache-2.0
|
| 4 |
+
quantized_by: tiararodney
|
| 5 |
+
library_name: gguf
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
tags:
|
| 8 |
+
- gguf
|
| 9 |
+
- llama.cpp
|
| 10 |
+
- eurollm
|
| 11 |
+
- sek
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
# EuroLLM-9B-Instruct GGUF
|
| 15 |
+
|
| 16 |
+
GGUF quantizations of [utter-project/EuroLLM-9B-Instruct](https://huggingface.co/utter-project/EuroLLM-9B-Instruct),
|
| 17 |
+
converted from the original bf16 weights with llama.cpp.
|
| 18 |
+
|
| 19 |
+
Prepared as a subject for the [sek scrollback-priming cross-model study](https://blog.tiararodney.com/projects/2026/semantic-execution-kernel/experiments/from-seed-to-weights/), where
|
| 20 |
+
EuroLLM-9B stands in as the distributionally distant baseline: a multilingual
|
| 21 |
+
European-language model rather than an English- and code-centric one. The
|
| 22 |
+
question it probes is whether synthetic-scrollback priming can hold a model whose
|
| 23 |
+
training mass is natural-language prose in consistent POSIX shell syntax.
|
| 24 |
+
|
| 25 |
+
## Provenance
|
| 26 |
+
|
| 27 |
+
- Source: utter-project/EuroLLM-9B-Instruct (bf16 safetensors)
|
| 28 |
+
- Converted: llama.cpp convert_hf_to_gguf.py --outtype bf16
|
| 29 |
+
- Quantized: llama.cpp llama-quantize
|
| 30 |
+
- Built on a single Tesla V100-SXM2-32GB
|
| 31 |
+
|
| 32 |
+
## Quants
|
| 33 |
+
|
| 34 |
+
| File | Quant | Size |
|
| 35 |
+
| --- | --- | --- |
|
| 36 |
+
| filled after the build | | |
|
| 37 |
+
|
| 38 |
+
## Prompt format
|
| 39 |
+
|
| 40 |
+
ChatML, with a system role. Stop token: the im-end token.
|