gemma-4-E4B-it, readout fine-tuned (LoRA, supervised)
A System One decision model: it reads a state, answers typed questions (choice, score, noul) and returns calibrated
probability distributions your code can branch on — it never writes text. This repo is a rank-16 LoRA (34,881,536 parameters) on google/gemma-4-E4B-it, merged into the weights at load, trained on its own decision
readout.
At a glance — accuracy 0.737 · ECE 0.057 · held-out 0.792 · TVD to human labels 0.316 · sure loss 0.295
same order, Gemma-4-E4B-it (own template), untuned (Tier 0): 0.658 / 0.092 / 0.742 / 0.434 / 0.205
same order, Jev 1.13.0: 0.733 / 0.113 / 0.835 / 0.432 / 0.081
jev-bench · leaderboard · findings · code
Use it
from jevify import load_jevified
model = load_jevified("Praveenrajus/jevify-gemma-4-e4b-it-readout")
model.ask({"text": "The battery lasted two days on a single charge."},
{"q": {"type": "noul", "instructions": "Is the review positive?"}})
jevify-serve --model Praveenrajus/jevify-gemma-4-e4b-it-readout serves it as a drop-in for the TypeSafe SDK (TYPESAFE_BASE_URL=http://localhost:8000).
The backbone is pulled from its own repo at load, pinned to commit ee0ef6023621cff504d758262d4e04895a5af4a2.
Results
Every number is on the jev-bench test splits (22,773 records) or the study's other test suites, scored the same way for every model; the rows under this model are references from the same study.
Decisions and calibration
| model | acc | ECE | Brier | held-out acc | TVD to human labels |
|---|---|---|---|---|---|
| this model | 0.737 | 0.057 | 0.330 | 0.792 | 0.316 |
| Gemma-4-E4B-it (own template), untuned (Tier 0) | 0.658 | 0.092 | 0.398 | 0.742 | 0.434 |
| same recipe + coherence | 0.742 | 0.053 | 0.322 | 0.799 | 0.297 |
| Jev 1.13.0 (TypeSafe API) | 0.733 | 0.113 | 0.349 | 0.835 | 0.432 |
Coherence and invariance — sure loss: mean d² over 4,749 question families (0 = perfectly coherent); order flip: how often the top answer changes when options are shuffled; tag TVD: how much the distribution moves when option tags change from A–J to other identifiers.
| model | sure loss | share incoherent | order flip | tag TVD | K=2→max acc drop |
|---|---|---|---|---|---|
| this model | 0.295 | 0.891 | 0.091 | 0.024 | 0.231 |
| Gemma-4-E4B-it (own template), untuned (Tier 0) | 0.205 | 0.971 | 0.104 | 0.022 | 0.290 |
| same recipe + coherence | 0.031 | 0.458 | 0.082 | 0.023 | 0.232 |
| Jev 1.13.0 (TypeSafe API) | 0.081 | 0.725 | 0.046 | — | 0.246 |
Out of distribution — stated rules (LegalBench, rule given in the question), none-of-the-above when the gold option is removed, injected-instruction hijack rate, and three community Jev benchmarks.
| model | stated rule | 'none' when gone | hijack | phishing AUROC | tool risk |
|---|---|---|---|---|---|
| this model | 0.795 | 0.498 | 0.135 | 0.690 | 0.900 |
| Gemma-4-E4B-it (own template), untuned (Tier 0) | 0.744 | 0.382 | 0.255 | 0.747 | 0.900 |
| same recipe + coherence | 0.791 | 0.540 | 0.122 | 0.682 | 0.883 |
| Jev 1.13.0 (TypeSafe API) | 0.924 | 0.744 | 0.205 | 0.688 | 0.933 |
Reproduction check. Loading this folder with load_jevified and re-scoring 72 jev-bench test records from six sources reproduced the training run's own test predictions: 0 changed choice answers, mean largest |Δp| 0.004, max 0.029 (the adapter is merged into bf16 weights at load).
How it was trained
The model is trained on its own decision readout — the distribution over the allowed answers read at the answer position,
one forward pass, no decoding — with the primitive's proper scoring rule.
Options are shuffled per family. Training data: the train splits of the 16 non-held-out jev-bench sources
(5,885 families, at most 400 records per source); lr 3e-05, 2 epochs,
best epoch by validation loss (epoch 0), seed 0.
A Tier 0 recipe (temperature per primitive, Noul bias, option-order permutations) was then fitted on validation splits.
The six held-out sources (clinc150, arc_challenge, yelp5, measuring_hate_speech, fever_evidence, strategyqa_grounded) never appeared in training.
Files
jevify_config.json— the recipe, the backbone and the training settingsload_jevifiedreadslora/— the adapter, merged into the backbone at loadresults/test_metrics.json— every jev-bench config;recipe.json— the fitted reciperesults/coherence.json,probes.json,tags.json— the coherence, probe and tag testsresults/train.json— the training log;summary.json— this model's row of the study tableresults/verification.json— the reproduction check reported under Results
Related models
Limitations
- One training seed per repo branch; out-of-distribution numbers in particular vary between identical runs, so compare arms across seeds before drawing conclusions.
- The phishing benchmark's decision threshold shifts after fine-tuning (ranking, AUROC, is preserved); a one-number log-odds shift fitted on a handful of labelled emails repairs it.
- English only; the recipe was fitted on jev-bench validation splits and may need refitting on a very different domain.