-
fix: pass lm_head to LogitsProcessor instead of calling forward()
released this
2026-02-06 14:21:14 +08:00 | 56 commits to main since this releaseIn vLLM v0.6.2, ParallelLMHead.forward() raises RuntimeError since
its weights should be used through LogitsProcessor.linear_method.apply().
Pass lm_head as first arg to LogitsProcessor which handles the
hidden_states -> logits projection internally.Downloads