Quantize a model: Ministral 3 8B
400 paired MMLU-Pro records. Expected recorded result: pass.
Replay the Ministral comparison with its approved reference anchors
After the setup above, run this from the reference checkout. The helper uses the separately pinned anchor and policy files, creates a temporary recipient key, verifies the retained pack and writes a new receipt and reports to the sibling ministral-recipient-output directory. Expect ok: true and policy_verdict: pass. Use a new output directory for each run.
python - <<'PYTHON'
import json, runpy, shutil
from pathlib import Path
root = Path.cwd()
helper = runpy.run_path(str(root / "scripts/release/release_reference_journey.py"))
result = helper["run_release_reference_journey"](
repo_root=root,
command=(shutil.which("invarlock"),),
workspace=root.parent / "ministral-recipient-output",
allow_checkout_source=False,
reference_config=Path("scripts/release/reference_evidence/ministral3-8b-bf16-to-q5-k-m-gguf-anchors.json"),
)
print(json.dumps(result, indent=2))
PYTHON