Views
No views yet
Untrained base. This is the off-the-shelf upstream Qwen3.5-4B (Alibaba / Qwen), self-converted to GGUF and quantized, adopted as the locator delegate for grove's delegated exploration mode (grove init --as mcp-llm). It is not a grove fine-tune. Full lineage:PROVENANCE.md.
| Quant | Size | file_type | Eval (sheet-coverage) | ollama tag | Role |
|---|---|---|---|---|---|
| Q8_0 | 4.6 GB | 7 | 82.1 (n=347) | q8_0 | canonical baseline |
| Q4_K_M | 2.78 GB | 15 | 80.6 (n=347) | q4_k_m | interim winner — memory-lean serving default |
q4_k_m) — best
size/quality trade-off. The higher-precision quant is the canonical eval
baseline. Full metrics below.| Quant | Answer-sheet coverage | Grounding gold rate | No-answer | Holdout |
|---|---|---|---|---|
| Q8_0 | 82.1 | 89% (308/347) | 38 | 347 |
| Q4_K_M | 80.6 | 83% (288/347) | 56 | 347 |
| Repo | Language | Q8_0 | Q4_K_M |
|---|---|---|---|
| bitcoin | C++ | 97% | 81% |
| django | Python | 92% | 89% |
| hugo | Go | 89% | 96% |
| laravel | PHP | 86% | 67% |
| rails | Ruby | 95% | 95% |
| redis | C | 97% | 82% |
| spring-boot | Java | 95% | 88% |
| typescript | TypeScript | 74% | 66% |
| webpack | JavaScript | 76% | 82% |
Apples-to-apples caveat: the two rows are the same weights at different precision — Q8_0 is the canonical baseline; Q4_K_M is the memory-lean default. Grounding policy:min_fs=0.8, min_evidence=0.5.
file:line citations. Point
.grove/explore.json at your local endpoint:1{
2 "provider": "ollama",
3 "base_url": "http://localhost:11434/v1",
4 "model": "grove-explore-base:q4_k_m",
5 "steering": "strict"
6}1ollama pull entelligentsia/grove-explore-base:q4_k_m
2# or import a local gguf with the shipped recipe:
3# ollama create grove-explore-base:q4_k_m -f Modelfile.q4_k_m1llama-server -hf entelligentsia/grove-explore-base-GGUF:Q4_K_M \
2 --alias grove-explore-base --jinja -ngl 99 \
3 -c 98304 -np 4 --cache-type-k q8_0 --cache-type-v q8_0--alias grove-explore-base makes the served /v1/models id stable regardless of file path;
--jinja uses the embedded chat template (chat_template.jinja).reasoning field, the answer in content.num_ctx for grove: 24576; temperature: 0.qwen35, 441 tensors,
4-section rope [11, 11, 10, 0], context
262144. Self-converted specifically to preserve the
4-section rope (3-section GGUFs from other converters will not load in
standalone llama.cpp).54ea292c6551c5608e1d014ca2d71ec6432314c18ffba81e61bce36bf1af042a grove-explore-base-q8_0.gguf1062c26f69f0aba645a3b8eeaeebfbe0c2fbc15c2f7fab284f437ef3f0391056 grove-explore-base-q4_k_m.ggufLICENSE.