Show HN: JevPertus – Jev-style option scoring on Apertus A developer released JevPertus, an open-source implementation that adds LoRA adapters and a small pointer head to the swiss-ai/Apertus-v1.5-8B backbone to assign probabilities to a question's answer options in a single forward pass. JevPertus supports multiple-choice questions, ordered rating scales, and true/false statements, encoding a state, question, options, and decision token into one sequence and scoring each option's final hidden state against the decision state. The project requires Python 3.11 or newer and trains on data/train.jsonl with evaluation on data/test.jsonl, with the full backbone needing to fit on the selected device alongside activations and training state. A simple, lightweight implementation of the Jev model on top of the Apertus LLM. JevPertus combines an Apertus text backbone, LoRA adapters, and a small pointer head to assign probabilities to a question's answer options. It supports multiple-choice questions, ordered rating scales, and true/false statements. Predictions come from scoring the supplied options in a single backbone pass. The implementation is based on the Blogpost from Archerhume https://archerhume.com/posts/jevs-architecture-unmasked and the Kev repository https://github.com/Jaluus/JevPertus/blob/main/... applied to the Apertus LLM https://huggingface.co/swiss-ai/Apertus-v1.5-8B . The simple idea is to encode a "State", a "Question", the "Options" and a final "Decision" into a single sequence. This looks somthing like this: