How to use from
llama.cpp
Install from brew
brew install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf TeunS/Geert:F16
# Run inference directly in the terminal:
llama-cli -hf TeunS/Geert:F16
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf TeunS/Geert:F16
# Run inference directly in the terminal:
llama-cli -hf TeunS/Geert:F16
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 TeunS/Geert:F16
# Run inference directly in the terminal:
./llama-cli -hf TeunS/Geert:F16
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 TeunS/Geert:F16
# Run inference directly in the terminal:
./build/bin/llama-cli -hf TeunS/Geert:F16
Use Docker
docker model run hf.co/TeunS/Geert:F16
Quick Links

TeunS/Geert

The Model TeunS/Geert was converted to MLX format from unsloth/gemma-2-2b-it using mlx-lm version 0.19.3.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("TeunS/Geert")

prompt="hello"

if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
    messages = [{"role": "user", "content": prompt}]
    prompt = tokenizer.apply_chat_template(
        messages, tokenize=False, add_generation_prompt=True
    )

response = generate(model, tokenizer, prompt=prompt, verbose=True)
Downloads last month
91
Safetensors
Model size
3B params
Tensor type
BF16
·
MLX
Hardware compatibility
Log In to add your hardware

Quantized

Inference Providers NEW
Input a message to start chatting with TeunS/Geert.

Model tree for TeunS/Geert

Quantized
(12)
this model