Views
No views yet
OpenVINO/Qwen3-Reranker-0.6B-int8-ov
optimized for reranking inference. The int8 weights are untouched — only the
compute graph is edited.lm_head over every position
(MatMul producing (batch, seq, vocab)), then discards all but the last row —
wasting a full-sequence projection against the ~151k-wide vocab on every call.Slice(start=-1, axis=1) immediately before the
lm_head MatMul, so the projection runs only on the final position. The output
shape becomes (batch, 1, vocab) instead of (batch, seq, vocab).openvino_model.xml / openvino_model.bin
(int8), tokenizer.json, config.json, plus the source repo's tokenizer
sidecars.OpenVINO/Qwen3-Reranker-0.6B-int8-ov (itself an OpenVINO int8
export of Qwen/Qwen3-Reranker-0.6B),
apache-2.0. The graph edit was performed with openvino.opset13
(Core.read_model → insert Slice → save_model); no weights were retrained,
requantized, or otherwise modified.