Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Does Georgism work? Five years later (astralcodexten.com)
    81comments
  2. DeepSeek Elastic Compute (DSec) (arxiv.org)
    50comments
  3. PipePipe: NewPipe hard fork implementing SponsorBlock (github.com/infinityloop1308)
    182comments
  4. Go Concurrency Distilled (antonz.org)
    9comments
  5. Show HN: Reladraw – A diagram language where you decide where to place things (github.com/reladraw)
    56comments
  6. Evolving programming languages in the AI era (dashbit.co)
    20comments
  7. Turning GLM-5.3-Flash into a Jev-like decision model (privatemode.ai)
    15comments
  8. A searchable library of forgotten public-domain film clips from 1915 onward (movingimagearchive.com)
    25comments
  9. Drawgent: Coding agent on a live Excalidraw canvas (tangled.org/yanndegat.tngl.sh)
    32comments
  10. Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC (righto.com)
    6comments
  11. Fifteen years later, the Apple Cards origin story (lexontech.org)
    89comments
  12. Biology might not be quantum, but its math is quantumlike (quantamagazine.org)
    7comments
  13. Promising discoveries about the potential for life on one of Saturn’s icy moons (fu-berlin.de)
    13comments
  14. Welcome to the Medical Clinic at the Interplanetary Relay Station (lightspeedmagazine.com)
    8comments
  15. Snap Wants to be a State Actor??–Kansas v. Snap (ericgoldman.org)
    —discuss
  16. ASML says it sold 'absolutely nothing' in Europe in 2026 (tomshardware.com)
    440comments
  17. LA Metro has some of the slowest escalators on Earth (basin.la)
    62comments
  18. Generate fonts where every LLM token is the same width (mesh.host)
    7comments
  19. Modern Object Pascal Introduction for Programmers (castle-engine.io)
    60comments
  20. How one Twitch chat message became code execution on a streamer’s PC (scrt.ch)
    11comments
  21. How I changed teaching after AI managed to do all my homework assignments (thelastsoftwareengineer.substack.com)
    141comments
  22. The Lost Atomic Update on Loongson CPU (jia.je)
    6comments
  23. The Evolution of Vending Machines (saturdayeveningpost.com)
    4comments
  24. Sousveillance (wikipedia.org)
    2comments
  25. How to keep enjoying programming in a world of LLMs (haskell.org)
    216comments
  26. HomeBody: A humanoid that explores, remembers, and acts on its own (stanford.edu)
    2comments
  27. Reading’s Bayeux Tapestry (diamondgeezer.blogspot.com)
    2comments
  28. Dutch designer made DE9: Closer to the Edit into a playable web-based instrument (creativeboom.com)
    1comments
  29. The Rise of Audio AR (dbreunig.com)
    13comments
  30. Breaking Up with Google Play: Why Conversations Is Now Free (gultsch.de)
    255comments

Turning GLM-5.3-Flash into a Jev-like decision model

32 pointsby 10h agoprivatemode.ai
14 comments
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.

10h agoHN ↗

My question is why not use Jev instead? It's faster and cheaper.

2h agoHN ↗

These questions are answered by the OP (Same speed, image support) - additionally, GLM is open weight.

2h agoHN ↗

There's some speculation that Jev is an open weight model with novel post-training (RLCD). So, if these folks have competitive accuracy with just the base model, it may 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.

1h agoHN ↗

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.

1h agoHN ↗

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.

1h agoHN ↗

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, sometimes 500ms. That's in the neighbourhood of 20-50,000 tok/s prefill, which is obviously not possible with normal LLMs, not even Cerebras is this fast.

1h agoHN ↗

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.

55m agoHN ↗

Isnt this obvious ? I would have thought people would try such things before deciding they need something like Jev

36m agoHN ↗

It is.

What isn't obvious is why people keep shouting "Jev Jev Jev" all the time.

Astroturf.

20m agoHN ↗

If you are using an autoregressive decoder (which glm is) it is not “jev-like”. You lose all of the speed advantages that Jev has.

18m agoHN ↗

We measured latency in separate runs with one request at a time, because timings taken under load measure the queue rather than the model.

As Privatemode is hosted in the EU and Jev is hosted in the US, we ran four of the datasets from Germany and from the US at the same time. From Germany, Privatemode answered in 180 ms and Jev in 264 ms. From the US, the order reverses: 164 ms for Jev against 299 ms for Privatemode.

turns out there is a trick to keeping the context filled and only evaluating a handful of choice tokens https://www.youtube.com/watch?v=bcGO7xre46o

10m agoHN ↗

Right, so it is double the latency and will no longer feel real-time to the end user.

16m agoHN ↗

Is this a joke? “Jev-like” properties? People have been using LLMs as classifiers or rankers in a similar way for ages. I feel like we’re losing our minds