Views
No views yet

| Quant | Bits/weight | Size | Notes |
|---|---|---|---|
Q8_0 | ~8.5 | 26.6 GB | Near-lossless. Use if you have ≥32 GB VRAM/RAM. |
Q6_K | ~6.6 | 20.6 GB | High fidelity, very small loss vs F16. |
Q5_K_M | ~5.7 | 17.9 GB | Strong default for ≥24 GB cards. |
Q4_K_M | ~4.8 | 15.4 GB | Most popular 4-bit; great quality/size tradeoff. |
IQ4_NL | ~4.5 | 14.7 GB | imatrix-aware non-linear 4-bit, smaller than Q4_K_M. |
IQ4_XS | ~4.3 | 14.0 GB | Smallest 4-bit; minor quality drop vs Q4_K_M. |
Q3_K_M | ~3.9 | 12.4 GB | Aggressive but usable; ≥16 GB VRAM. |
IQ3_M | ~3.7 | 11.7 GB | imatrix 3-bit; better than Q3_K_M at similar size. |
IQ2_M | ~2.7 | 9.3 GB | Tight VRAM budget; expect noticeable degradation. |
Q4_K_M or IQ4_NLQ5_K_MQ6_KQ8_0IQ4_XS or Q3_K_MIQ3_M or IQ2_M1./llama-cli -m Ornstein-hermes-3.6-27b-Q4_K_M.gguf \
2 -ngl 999 \
3 -c 8192 \
4 --temp 0.7 \
5 -p "<|im_start|>user\nWhat's the weather in Tokyo?<|im_end|>\n<|im_start|>assistant\n"--chat-template system prompt or use the OpenAI-compatible server (llama-server) which handles tool registration automatically.1ollama create ornstein-hermes-q4 -f - <<EOF
2FROM ./Ornstein-hermes-3.6-27b-Q4_K_M.gguf
3TEMPLATE """{{- range .Messages }}<|im_start|>{{ .Role }}
4{{ .Content }}<|im_end|>
5{{ end }}<|im_start|>assistant
6"""
7PARAMETER stop "<|im_end|>"
8EOF
9
10ollama run ornstein-hermes-q4<|im_start|>system
You are a function calling AI model. You are provided with function signatures within <tools></tools> XML tags.
<tools>
[{"name": "get_weather", "description": "...", "parameters": {...}}]
</tools>
<|im_end|>
<|im_start|>user
What's the weather in Tokyo?<|im_end|>
<|im_start|>assistant
<think>The user wants weather info. I'll call get_weather.</think>
<tool_call>{"name": "get_weather", "arguments": {"city": "Tokyo"}}</tool_call><|im_end|>
<|im_start|>tool
<tool_response>{"temp_c": 18, "condition": "cloudy"}</tool_response><|im_end|>
<|im_start|>assistant
It's 18°C and cloudy in Tokyo.<|im_end|>| Source | GestaltLabs/Ornstein-hermes-3.6-27b (bf16) |
| F16 GGUF size | 53.8 GB (851 tensors) |
| Tool | llama.cpp (latest) |
| imatrix corpus | 800 conversations from DJLougen/Acta-Synthetic, passes_thresholds=True, rendered with the Qwen3.6 chat template (~385K tokens, 1.74 MB) |
| imatrix params | --n-gpu-layers 999 -c 4096 -b 4096 --chunks 200 |
| Hardware | 1× NVIDIA RTX PRO 6000 Blackwell |
@dataset{lougen_acta_2026,
author = {DJLougen},
title = {Acta: A Premium Curated Sample of High-Quality Agentic Tool-Use Conversations},
year = {2026},
url = {https://huggingface.co/datasets/DJLougen/Acta}
}