Hacker News

Top stories

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

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

16 pointsby 9h agoprivatemode.ai
7 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.

9h agoHN ↗

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

1h agoHN ↗

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

1h agoHN ↗

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.

49m 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.

41m 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.

33m 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. 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.

19m 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.