Views
No views yet
securityContext: Elevated in DSC v3 documents. That is
schema-invalid. dsc-lib's SecurityContextKind is declared
#[serde(rename_all = "camelCase")], so only current, elevated and restricted
deserialize — the PascalCase form fails outright. Microsoft Learn's ValidValues table
lists the capitalised spellings and is wrong. This release emits the lowercase enum.| metric | ringollm-v4 | ringollm-v42 |
|---|---|---|
| rubric checks passed | 110/129 (85.3%) | 112/129 (86.8%) |
| questions passed | 14/25 (56.0%) | 17/25 (68.0%) |
| securityContext valid / invalid | 0 / 6 | 8 / 0 |
| median tok/s | 11.26 | 11.29 |
1llama-server -m RingoLLM-v42-qwen35-27B-Q5_K_M.gguf \
2 --jinja --chat-template-file ringollm-v42.jinja \
3 -ngl 999 -fa on -np 1 \
4 -c 65536 --cache-type-k q8_0 --cache-type-v q8_0 --kv-unified \
5 --temp 0.3 --top-p 0.9 --repeat-penalty 1.15 --repeat-last-n 2561ollama create ringollm-v42 -f Modelfile
2ollama run ringollm-v42| flag | value | why it matters |
|---|---|---|
--chat-template-file | ringollm-v42.jinja | Required. Ships in this repo. It injects the default system prompt that defines scope and the refusal format. Without it the model loses all refusal behaviour. |
--kv-unified | on | Stability, not tuning. On RADV / AMD Strix Halo this architecture hard-hangs the GPU on prompts past ~20k tokens without it — vk::Queue::submit: ErrorDeviceLost, an amdgpu ring timeout, and a reset that takes down unrelated processes. Upstream issue closed as not-planned, so there is no fix to wait for. Harmless on other backends; leave it on. |
--cache-type-k/v | q8_0 | Pairs with --kv-unified to make long contexts affordable and stable. |
-c | 65536 | Observed real-world high-water is ~26k tokens. |
-np | 1 | Recurrent state is allocated per slot; more slots divide the usable context. |
-fa | on | Flash attention. |
--temp / --top-p | 0.3 / 0.9 | What the model was evaluated with. |
--repeat-penalty / --repeat-last-n | 1.15 / 256 | As evaluated. |
<think> block.