Top
Best
New

Posted by bashbjorn 16 hours ago

Jev in 25 Lines of Python(www.nobodywho.ai)
603 points | 190 commentspage 3
Oscalemor 3 hours ago|
First release people are getting more balanced at least. Less 'it's gonna change everything' to 'might be viable use cases'. If I have to look at one more video high lighting google flights, I might loose it though.
armcat 12 hours ago||
Looking at the logprobs on tokens works for the local models, but not on the frontier ones. It's been more or less broken since GPT-4o for example. I wrote about it two years ago: https://medium.com/data-science/9-11-or-9-9-which-one-is-hig.... Also, I've done some work in estimating confidence and on rubric evals using the same method, and you actually get better correlation to "real confidence" by just getting the LLM to say it.
hununu 9 hours ago|
Interesting. Have you repeated these experiments with recent models? I'm thinking frontier models APIs have tools/MCPs for math stuff but curious about recent Qwen models, etc.
cupofjoakim 14 hours ago||
I wonder if this could be a good stepping stone to write a local prompt router to optimise what model get what prompt. I.e. if the prompt is just a lookup, send it to haiku, if it's reasoning, send it to opus and if it's implementation send it to sonnet.
v18a 14 hours ago|
I was thinking the same. Haven't tried it out.
chpatrick 6 hours ago||
Could someone explain how Jev is different from using any old model and constraining the output to "My choice is a/b/c..."?
xigoi 2 hours ago||
The model can spend more “mental energy” on the decision because it doesn’t have to spend any on phrasing the output.
jimmyl02 6 hours ago|||
The argument the article makes is it's not that different. Jev's argument is that they have trained the model to better output probabilities (which is not necessarily a training object of LLMs but we don't actually know that)

Ultimately Jev claims to have a data advantage which is likely where the future lies. They'll have a unique edge in improving general purpose classification / decisioning.

kccqzy 4 hours ago||
If you believe the marketing, constraining the output this way can make the model much faster and much more type-safe (the model didn’t give you a fifth choice not present in the choices).
davidfekke 8 hours ago||
This is a system two model, and not a system one. To get the performance of Jev, and you want to run locally, use Laya. It is up on Hugging Face.
kjshsh123 6 hours ago||
Maybe someone can explain why RL is even needed for post training with Jev? We have supervised labels.

I guess it's due to the calibrated decision part (and that's what LLMs tell me).

But I figure some supervised classification post training would still improve the model.

fzysingularity 7 hours ago||
Am I missing something here:

p(y = next thinking+decision token | x = question) != p(y = next decision token | x = question)

The former is what LLMs are trained for, the latter is what Jev was likely trained on (likely used thinking alignment as an auxiliary loss, but not explicitly included in the probability calibration).

boros2me 11 hours ago||
We have Jev at home
rgbrgb 5 hours ago||
i love that people are trying to make OS jevs but what is the point of doing all this work and not ask your coding agent to do a little benchmarking. selfishly want an open weight model to beat jev here

just found this one https://huggingface.co/spaces/multimodalart/jev-decision-ind...

xg15 11 hours ago|
I missed the hypewave so can't say a lot about Jev, but the double standards are entertaining:

About Jev:

> We didn't train a model with Reinforcement Learning for Calibrated Decisions (RLCD) to calibrate the decisions and probabilities (even though they are not always correct).

Only 99% correctness! Borderline unusable!

About their model:

> It classifies: it gets a prompt with choices and outputs probabilities.

You want numbers, it gives you numbers! What more could you want?

More comments...