Views
No views yet
trust_remote_code=True) whose Int8GroupLinear modules keep the int8 weights RESIDENT in VRAM
and dequantize per forward, instead of transformers' decompress-to-bf16-and-keep behavior.lm_head stays bf16 (tied to the embedding
table; the yes/no score is read from it). Fidelity is that of the GPTQ parent: identical bf16 top-1
on every query bf16 itself decides (score gap >= 0.01), 70 queries x 20 candidates.AutoModelForCausalLM.from_pretrained(..., trust_remote_code=True) and apply the
official Qwen3-Reranker scaffold; score = P("yes") from the last-position logits. Pass
logits_to_keep=1 to avoid materializing full-sequence vocab logits (see the parent model card for
the complete snippet; only the repo id and trust_remote_code=True differ).