Back to News
Advertisement
fflxflx about 10 hours ago 8 commentsRead Article on privatemode.ai
We found an approach to get Jev-like properties from standard LLMs like GLM-5.3-Flash.

The core idea is to craft the input prompt so that the first output token answers the question. This makes it possible to get a decision with a single forward pass.

In the blog post, we describe the approach in detail for GLM-5.3-Flash and vLLM. We benchmark this setup against Jev and Laya. We find that our setup is on-par with Jev in terms of accuracy and speed and that it substantially outperforms Laya.

Still, in terms of costs per decision, Jev is several x better than our setup. In turn, our setup supports vision inputs.

Advertisement

⚑ Community Insights

Discussion Sentiment

60% Positive

Analyzed from 359 words in the discussion.

Trending Topics

#jev#training#open#questions#necessarily#need#random#input#tokens#correct

Discussion (8 Comments)Read Original on HackerNews

ttoinouβ€’2 minutes ago
Isnt this obvious ? I would have thought people would try such things before deciding they need something like Jev
ricardobeatβ€’37 minutes ago
Everyone is doing this to emulate Jev, but...

I took a random book excerpt with 23,000 words (Β±30k input tokens) and used it as context. Jev still responds in 800ms. Other estimates put it between 50-100,000 tok/s prefill, which is obviously not possible with normal LLMs. Not even Cerebras is this fast.

prometheus1992β€’23 minutes ago
was the answer correct?

i have tested jev for my use cases and its horrendously wrong, but then the follow up from jev's team is "oh, you need to boil the question down further". it's a spiral of how much do you wanna dumb down the ask so that it answers it correctly. i'll pass for now.

also, 30k input tokens is a lot.

m4y0uβ€’about 9 hours ago
My question is why not use Jev instead? It's faster and cheaper.
kylecazarβ€’about 1 hour ago
There's some speculation that Jev is essentially an open weight model with novel post-training (RLCD). So, if these folks have competitive accuracy with just the base model, it could raise some questions about the necessity of Jev's architecture. You generally don't want to find yourself competing only on price.

Fyi, I haven't tested this yet.

Fordecβ€’about 1 hour ago
Also, while it's clearly got a lot of training on some use cases, others that probably weren't in the training set have worse good decision rates than a random number generator. If you can rebuild the architecture, you can train it on your use case.
dcss_gardenerβ€’about 1 hour ago
I mean just from what's known of the funding and timeline it pretty much has to be based on open weights.

But it is likely more than just a fine tune + novel training. At the very least the LM head is swapped out for a classifier one and then or also idk, bidirectional attention for the encoding pass I'm out of my depth at this point and will stop guessing. The training is probably where they have the biggest moat though, not that it's necessarily huge.

I have a project that fits jev as advertised almost comically well and I've been playing with it, and the various hacks and open versions. Jev doesn't necessarily perform better overall but it is quite different. It's sensitive to prompt phrasing in ways the others aren't, it's easy to generate questions where all the other models cluster in confidence but jev is an outlier. Not necessarily more correct, but it does feel like it's getting its answers in a different way.

I'm guessing just as much as anyone else but I've been spending a ton of time on this the last couple weeks, it landed right when I was most ready to dig into it.

andrewchambersβ€’about 2 hours ago
These questions are answered by the OP (Same speed, image support) - additionally, GLM is open weight.