Views
No views yet

occ-ai/OCC-RAG-1.7B
for native inference with llama.cpp,
Ollama, LM Studio, and other
GGUF-compatible runtimes.llama.cpp/Ollama apply it automatically.| File | Quant | Size | Notes |
|---|---|---|---|
OCC-RAG-1.7B-Q4_0.gguf | Q4_0 | 1.05 GB | 4-bit, legacy — smallest |
OCC-RAG-1.7B-Q4_K_M.gguf | Q4_K_M | 1.11 GB | 4-bit K-quant — recommended balance |
OCC-RAG-1.7B-Q5_K_M.gguf | Q5_K_M | 1.26 GB | 5-bit K-quant |
OCC-RAG-1.7B-Q6_K.gguf | Q6_K | 1.42 GB | 6-bit K-quant |
OCC-RAG-1.7B-Q8_0.gguf | Q8_0 | 1.83 GB | 8-bit — near-lossless |
OCC-RAG-1.7B-F16.gguf | F16 | 3.45 GB | 16-bit float (full precision) |
OCC-RAG-1.7B-BF16.gguf | BF16 | 3.45 GB | 16-bit bfloat (lossless base) |
occ-ai/OCC-RAG-0.6B-GGUF.1# Run directly from the Hub (downloads the chosen quant)
2llama-cli -hf occ-ai/OCC-RAG-1.7B-GGUF:Q4_K_M -p "Hello" -no-cnv
3
4# Or download a file and run it
5llama-cli -m OCC-RAG-1.7B-Q4_K_M.gguf -p "Hello" -no-cnv
6# (newer llama.cpp: use `llama-completion` for non-interactive runs)ollama run hf.co/occ-ai/OCC-RAG-1.7B-GGUF:Q4_K_M<|query_start|> … <|query_end|> and each source in
<|source_start|><|source_id|>N … <|source_end|>. The response has five sections —
query analysis → source analysis → reasoning → status (ANSWERABLE / UNANSWERABLE)
→ answer — and the final answer is in <|answer_start|> … <|answer_end|>.--jinja) builds the query/source
tokens for you when sources are supplied as documents; alternatively assemble the tokens
manually. See the base model card for the
full format and a runnable example.We recommend greedy decoding (--temp 0), the training/evaluation default.
1@misc{savkin2026occragoptimalcognitivecore,
2 title = {OCC-RAG: Optimal Cognitive Core for Faithful Question Answering},
3 author = {Maksim Savkin and Mikhail Goncharov and Alexander Gambashidze and Alla Chepurova and Dmitrii Tarasov and Nikita Andriianov and Daria Pugacheva and Vasily Konovalov and Andrey Galichin and Ivan Oseledets},
4 year = {2026},
5 eprint = {2606.00683},
6 archivePrefix = {arXiv},
7 primaryClass = {cs.CL},
8 url = {https://arxiv.org/abs/2606.00683}
9}