Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Microbial network could drive methane production in the seafloor(sdu.dk)
    discuss
  2. Scaleup Europe Fund – new, multi-billion late-stage and growth fund(europa.eu)
    discuss
  3. Agents: The New, New Kingmakers(redmonk.com)
    discuss
  4. AssBench is all You need to benchmark LLM Harness Intelligence /s(grigio.org)
    discuss
  5. YouTube introduces A/B testing for videos(blog.youtube)
    discuss
  6. Proposed bill to ban artificial superintelligence and create Department of AI(apnews.com)
    1comments
  7. Anthropic CEO Amodei Warns UN Security Council on AI Risks(youtube.com)
    discuss
  8. Show HN: Trader News – Hacker News for Finance
    1comments
  9. Meta deletes this satirical video about its smart glasses from Instagram(youtube.com)
    discuss
  10. Show HN: Wl-pick – a live window picker for Sway(mil.ad)
    discuss
  11. New facial recognition store checkout system piloted by Revolut(independent.co.uk)
    discuss
  12. Parsing JSON Objects Without Intermediate ASTs in Haskell(arthi-chaud.github.io)
    discuss
  13. iOS 27 Trust Insights API [video](developer.apple.com)
    1comments
  14. Don't we require emotions for doing research?
    discuss
  15. The Lost Atomic Update on Loongson CPU(jia.je)
    discuss
  16. Kerberized MCP Server with Delegation(github.com/overpassconnect)
    discuss
  17. We ported the original Doom to SQL(cedardb.com)
    discuss
  18. Bring Back the Nokia Lifestyle(chatgpt.site)
    discuss
  19. Meta takes down a critical video about meta AI Glasses after filming at Meta(reddit.com)
    12comments
  20. Show HN: ListenIn – Mac dictation tuned for mixed Chinese-English speech(listenin.dev)
    discuss
  21. Show HN: Muro: Free Native Live Wallpapers for macOS(murowallpaper.com)
    discuss
  22. Show HN: La Machine – a useless box running Erlang on an ESP32 via AtomVM(github.com/pguyot)
    discuss
  23. MCP server for Mario Paint. It draws and composes inside the real SNES game(github.com/theliux)
    discuss
  24. DAWO: Working together on a digitally autonomous workplace for Dutch government(dawo.community)
    discuss
  25. IKEA set to open supermarket sized stores in the Netherlands next year(nltimes.nl)
    discuss
  26. Rails World 2026 Opening Keynote(youtube.com)
    discuss
  27. Ideas on modernizing the open-source desktop(lwn.net)
    2comments
  28. The current CSS-Tricks situation(chriscoyier.net)
    1comments
  29. GCC and Clang performance changed over 10 years: my experiment(medium.com/kostya27)
    discuss
  30. Code shouldn't know which LLM provider you're using(github.com/berriai)
    discuss

Contrastive Language Models

60 pointsby 4h agocontrastive-lm.notion.site
14 comments
4h agoHN ↗

I wonder when work started on this project, and how the public release of Jev played into their timing.

3h agoHN ↗

Does the latency even matter?

You're comparing a local GPU to network hops? Wouldn't be surprised if Jev was actually similar in runtime and their is just a great deal of network latency.

The evaluation is quite interesting though - I'd actually say the raw answer is correct in the absence of detail and prior knowledge (Who wrote the play Romeo and Juliet).

2h agoHN ↗

I tried TypeSafe’s Jev playground. It outputs the model latency and network latency separately. The model latency was 100-200ms in my tests.

2h agoHN ↗

what's with that dino run? Jev is slow but it jumps correctly, their model always touches the cactus or whatever it is...I am guessing it doesn't matter? Or does it?

2h agoHN ↗

Very interesting insight on the training process, it's pretty cool to have some experimental justification for why they took these exact steps, what they tried and did not work, etc. Feels a bit less like dark magic.

However I agree the latency argument doesn't hold much value with Jev because it runs on a remote server. Seeing how many open Jev-like models came out recently it would be much more interesting to have a comparison with them.

1h agoHN ↗

"On par with Jev" is Mario, T-Rex, WikiRacing: large-K semantic action matching, the regime where cosine over independently encoded vectors is the right inductive bias. The zero-shot suite does not cover the typed-decision load: date arithmetic, negation chains, policy thresholds.

1h agoHN ↗

I really hope that "System One" won't stick around as a new buzzword simply meaning "fast".

35m agoHN ↗

i'm well aware of the origin and meaning of the term

"System 1" is fast, instinctive and emotional

this implies more than just "fast", which is precisely why i don't like its present usage

27m agoHN ↗

Instinctive is a good way to describe it compared to generative LLMs. Jev gives you one instant answer, fast and usually correct but without nuance or any explanation. Human instincts work the same way.

53m agoHN ↗

I tried running this on a H100 and got 190ms compared to Jev's 170ms. Maybe I set it up wrong?

2m agoHN ↗

I’m fascinated by this thing and by the way it’s interpreting Jev. It’s very cool, but is it actually a classifier?

IIUC they took an already-trained “frozen” LLM and trained a little model on top that takes both a question and the hidden states after processing the input data and produces answer “probabilities”. (In contrast, the original LLM would have been run in AR mode to generate multiple output tokens representing its answer.) But then they used it for a purpose that isn’t really classification.

IMO there is a rather large difference between “is this email spam” and “what character should I type in this agentic workload”. The former is classification: there is hopefully a ground truth (is the email spam?) and the model is trying to classify the email. You would score it with a proper scoring rule. The latter is a strategy: there usually isn’t a correct answer, now or in the future. The model is playing a game consisting of repeated rounds, and the only way to evaluate it is to see how well it plays. You can’t even usefully compare it to the optimal solution because you may not know the optimal solution and you don’t actually need the model to produce an optimal solution.

I do think this approach is really cool, and it does suggest that one might be able to use a modern LLM to process an input and then extract the model’s next agentic step in a very fast, non-AR manner, with results comparably good to the usual AR decoding. And I think it’s very interesting to decouple the tokenized input representation from the model output representation, both because prefill tends to be faster and cheaper than AR output and because it’s never seemed particularly sensible to me that a model should be constrained to generate outputs at the cadence of one run through the model per output token. (AFAIK the main reason that models work on the same input and output token space is that this is how the pretraining process works.)

I wonder how to fit “reasoning” into this framework. Maybe have the question be something like “do you need to think further and, if so, what is your first thinking token”. But maybe something more clever is possible.