This repo contains a backup of all Predator-Q artifacts from the 2026-06-23 session.
1# 1. Download imatrix + base model
2# (qimx) and qwopus_f16.gguf from elsewhere (not backed up due to size)
3
4# 2. Apply any recipe from moq_recipes/
5llama-quantize --imatrix qwopus_imatrix.gguf \
6 --tensor-type-file moq_recipes/MoQ_qwen3.6-27b_tensors_4.0.txt \
7 qwopus_f16.gguf output.gguf Q4_K
8
9# 3. Evaluate KL-div using base_logits_0.dat
10llama-perplexity -m output.gguf -f wikitext-2-raw/wiki.test.raw \
11 -c 512 -b 512 -np 1 \
12 --kl-divergence-base kl_div_base_logits/base_logits_0.dat \
13 --kl-divergence --seed 1337 -ngl 99 --chunks 50