Datasets:
Upload folder using huggingface_hub
Browse files- README.md +75 -0
- hermes_pairing.csv +5 -0
README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- agent
|
| 7 |
+
- agentic
|
| 8 |
+
- hermes
|
| 9 |
+
- codeact
|
| 10 |
+
- tool-use
|
| 11 |
+
- local-llm
|
| 12 |
+
- gguf
|
| 13 |
+
- rtx-5090
|
| 14 |
+
- benchmark
|
| 15 |
+
pretty_name: Hermes Pairing — Agentic Benchmark for Local LLMs
|
| 16 |
+
size_categories:
|
| 17 |
+
- n<1K
|
| 18 |
+
configs:
|
| 19 |
+
- config_name: default
|
| 20 |
+
data_files: hermes_pairing.csv
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# Hermes Pairing — Agentic Benchmark for Local LLMs (Phase A)
|
| 24 |
+
|
| 25 |
+
How well does a local LLM **drive an agent**? This dataset holds results for pairing local models with
|
| 26 |
+
[Hermes Agent](https://hermes-agent.nousresearch.com) (NousResearch) — a **CodeAct** agent: the model
|
| 27 |
+
acts by writing Python (`execute_code`) that orchestrates tools, *not* by emitting JSON function calls.
|
| 28 |
+
|
| 29 |
+
Generated with [llm-bench-rig](https://github.com/notwitcheer/llm-bench-rig) on an NVIDIA RTX 5090 (32GB),
|
| 30 |
+
llama.cpp / GGUF, **under Hermes's real ~3.5K-token system prompt**.
|
| 31 |
+
|
| 32 |
+
> **Phase A (synthetic).** A reproducible synthetic ranking of agentic *capability* — not a real-harness
|
| 33 |
+
> verdict. Phase B (running the top finishers through the actual Hermes Agent) is the validation step.
|
| 34 |
+
|
| 35 |
+
## Leaderboard
|
| 36 |
+
|
| 37 |
+
| Rank | Model | Pairing | codeact | multistep | instruction | long-ctx |
|
| 38 |
+
|---|---|---|---|---|---|---|
|
| 39 |
+
| 1 | Qwopus-GLM-18B (13GB) | **92.65** | 94 | 75 | 94 | 100 |
|
| 40 |
+
| 2 | Qwen3.6-27B (21GB) | **92.38** | 99 | 100 | 100 | 71 |
|
| 41 |
+
| 3 | Nemotron-Cascade-2-30B | 90.50 | 99 | 50 | 92 | 100 |
|
| 42 |
+
| 4 | Hermes-4.3-36B (21GB) | 84.27 | 95 | 67 | 98 | 67¹ |
|
| 43 |
+
|
| 44 |
+
¹ Hermes-4.3-36B OOMs at 64K context on 32GB → 0 at that depth.
|
| 45 |
+
|
| 46 |
+
## The four axes (Hermes Pairing Score = weighted sum, 0–100)
|
| 47 |
+
|
| 48 |
+
- **codeact** (0.40) — code-as-action: writes Python orchestrating tools, executed in a sandbox (pass@1).
|
| 49 |
+
- **longcontext** (0.25) — retrieve-and-use a needle in a long memory/tool-log context at 16K/32K/64K (per-depth, VRAM-aware; an OOM depth scores 0).
|
| 50 |
+
- **instruction** (0.20) — compliance under the real Hermes prompt vs minimal (the delta is the heavy-prompt tax).
|
| 51 |
+
- **multistep** (0.15) — loop stability: forced fetch→observe→act loops.
|
| 52 |
+
|
| 53 |
+
Per-depth long-context and the instruction delta are in `hermes_pairing.csv`.
|
| 54 |
+
|
| 55 |
+
## Findings (honest)
|
| 56 |
+
|
| 57 |
+
- **#1 and #2 are a statistical tie** (within ~±5% CI). Not "Qwopus won by 0.3."
|
| 58 |
+
- **An 18B frankenmerge competes with the bigger models** — efficiency over raw size.
|
| 59 |
+
- **The lab's own model finishes last** — Hermes-4.3-36B is the worst pairing for Hermes Agent (gap is real).
|
| 60 |
+
- **No model wins all four axes** — best agent model depends on workload: Qwen 27B is the reasoning-loop/instruction king but weak at retrieval; Nemotron + Qwopus ace long-context; Nemotron is weakest at multi-step.
|
| 61 |
+
- **The 64K VRAM wall** — a 36B Q4 can't hold 64K KV in 32GB; smaller models can. Size is a liability for long-context agents on a single card.
|
| 62 |
+
|
| 63 |
+
## Method
|
| 64 |
+
|
| 65 |
+
llama.cpp / `llama-server`, GGUF, RTX 5090 32GB. Real Hermes prompt extracted from the open-source repo
|
| 66 |
+
(static guidance, ~3.5K tokens). `codeact` runs under a light prompt (the real prompt conditions models
|
| 67 |
+
into incremental tool-call markup that fights a one-shot block eval); the other three run under the real
|
| 68 |
+
prompt. Decision-run sizes: codeact n≈100, instruction n≈50, longcontext n≈15×3 depths, multistep n≈12.
|
| 69 |
+
Full code + methodology: https://github.com/notwitcheer/llm-bench-rig (`lib/agentic/`).
|
| 70 |
+
|
| 71 |
+
## Models
|
| 72 |
+
[KyleHessling1/Qwopus-GLM-18B-Healed](https://huggingface.co/KyleHessling1/Qwopus-GLM-18B-Healed) ·
|
| 73 |
+
[unsloth/Qwen3.6-27B-GGUF](https://huggingface.co/unsloth/Qwen3.6-27B-GGUF) ·
|
| 74 |
+
[bartowski/Nemotron-Cascade-2-30B-A3B-GGUF](https://huggingface.co/bartowski/nvidia_Nemotron-Cascade-2-30B-A3B-GGUF) ·
|
| 75 |
+
[NousResearch/Hermes-4.3-36B-GGUF](https://huggingface.co/NousResearch/Hermes-4.3-36B-GGUF)
|
hermes_pairing.csv
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
model,params,size_gb,pairing_score,codeact,multistep,instruction,longcontext,lc_16k,lc_32k,lc_64k,instruction_delta,hf_repo
|
| 2 |
+
Qwopus-GLM-18B,18B frankenmerge,13,92.65,94.0,75.0,94.0,100.0,100.0,100.0,100.0,-28.0,KyleHessling1/Qwopus-GLM-18B-Healed
|
| 3 |
+
Qwen3.6-27B,27B dense,21,92.38,99.0,100.0,100.0,71.11,73.33,66.67,73.33,-2.0,unsloth/Qwen3.6-27B-GGUF
|
| 4 |
+
Nemotron-Cascade-2-30B,30B-A3B MoE,18,90.50,99.0,50.0,92.0,100.0,100.0,100.0,100.0,6.0,bartowski/nvidia_Nemotron-Cascade-2-30B-A3B-GGUF
|
| 5 |
+
Hermes-4.3-36B,36B dense,21,84.27,95.0,66.67,98.0,66.67,100.0,100.0,0.0,2.0,NousResearch/Hermes-4.3-36B-GGUF
|