DIY-Jev: no fine-tuning needed — reading true/false logits hits 75.5% on 32k benchmark

Malfeitor1235 · reddit · 2026-09-21

Developer VakeDomen released DIY-Jev, a Jev-style inference setup that needs no NLI fine-tuning or classifier head and works with completely unmodified open-weight LLMs.

Method: each candidate answer becomes a boolean verification — after building a <state>/<question>/<options>/<candidate> prompt, instead of generating text the code reads the true/false logits, subtracts them per candidate, and softmaxes the differences. The expensive prefix is evaluated once; candidate branches (differing only in the last tokens) are batched through llama.cpp.

Results on a 32,235-example benchmark (laptop RTX 5090 24GB):

Notably, the same model with zero training outperforms the OpenJev fine-tune. The author cautions it's not a strict Jev reproduction and the benchmark isn't perfectly apples-to-apples. Code: GitHub DIY-Jev.

Original post →

More from Research

Research channel →