Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. European leaders prepare public for 'intensified threat' from Putin(politico.eu ↗)
    discuss
  2. Why my alert triage workflow needed a CLI(powers.dev ↗)
    discuss
  3. AI cracked the Navier–Stokes challenge. What does that mean for physics?(nature.com ↗)
    discuss
  4. Machine Gods – the official podcast of the singularity(machinegods.fm ↗)
    discuss
  5. Cannabis Supply Chain Database(cannabis-supply-chain.pages.dev ↗)
    discuss
  6. AI insiders issue new warnings – including former Anthropic engineer Jacob Coxon(slashdot.org ↗)
    discuss
  7. Plan Advice in PostgreSQL 19(tapoueh.org ↗)
    discuss
  8. Prepare your iPhone 18 Pro Max to ship(support.apple.com ↗)
    discuss
  9. Bring back old Opus in Claude Code(osr.im ↗)
    1comments
  10. Alibaba open-sources AI model that can detect cancer and nearly 150 conditions(scmp.com ↗)
    discuss
  11. Swiss Federal Council Adopts the 2026 Security Policy Strategy(admin.ch ↗)
    discuss
  12. Jump N Bump(jumpnbump.net ↗)
    discuss
  13. Show HN: Do your vitamins work?(supplementdex.com ↗)
    1comments
  14. I've cross-examined a lot of humans, but never a supercomputer. Check it out(chatgpt.com ↗)
    discuss
  15. Show HN: Wcagent let use your ChatGPT subscription for coding(wcagent.ai ↗)
    discuss
  16. Omarchy team started working on Qualcomm's Snapdragon platform support(omarchy.org ↗)
    discuss
  17. Wildlife corridor project is first Canadian finalist for Earthshot Prize(cbc.ca ↗)
    1comments
  18. TypeSafe AI's Jev Is Not an LLM – and That May Be the Point(forkast.news ↗)
    discuss
  19. AI-based learning is a joke(qlain.online ↗)
    1comments
  20. What Is Synthetic Data Generation? A Simple Explainer(aptiv.com ↗)
    discuss
  21. The Working Class Face a 'Class Ceiling' in Elite Occupations(nytimes.com ↗)
    2comments
  22. Show HN: StopReg – Email API for detecting disposable email and signup abuse(stopreg.com ↗)
    discuss
  23. A New Risk for Mathematicians(twitter.com/shallit43 ↗)
    discuss
  24. Yongsan Electronics Market (Seoul)(wikipedia.org ↗)
    discuss
  25. Score Centering Stabilizes Off-Policy Reinforcement Learning(arxiv.org ↗)
    discuss
  26. The Other Way AI Impairs Our Thinking(theatlantic.com ↗)
    discuss
  27. Uber ordered to pay $40M over death of woman left on Southern California freeway(ktla.com ↗)
    discuss
  28. Unit Tests: Protecting Your Code from Being Poorly Handled by Others(yosefk.com ↗)
    discuss
  29. Analysis busts myths of Roman road network, offers insight into ancient world(cnn.com ↗)
    1comments
  30. U.S. Has Reached Security Deal on Greenland(nytimes.com ↗)
    1comments

Cache-to-Cache: Direct Semantic Communication Between LLMs (2025)

61 pointsby 5h agoarxiv.org
11 comments
4h agoHN ↗

So the models will not only be using more and more Neuralese in their CoT (like GPT-6), but different agents will also be able to communicate with each other in Neuralese. It's not looking good for monitorability.

3h agoHN ↗

Is Neuralese in no way decodable into a human-interpretable system? Genuine question -- I don't know the answer.

3h agoHN ↗

Definitely decodable, that's what's being done now

4h agoHN ↗

A few months ago I asked why semantic representation rather than text wasn't used, since natural language seems quite a lossy representation for semantic concepts:

https://news.ycombinator.com/item?id=47195212

I wouldn't have thought to use it for LLM-to-LLM communication, though

3h agoHN ↗

I feel like multimodal models that can read images should work differently than they do. My understanding is that multimodal models basically first generate an image embedding and then the model is trained to interpret that embedding, but in the same way that text is lossy, it seems like the embedding would be as well. Why don't multimodal models learn to interpret images themselves without an embedding? Or e.g., by passing some "prompt" to the embedding model?

3h agoHN ↗

What does interpreting images mean in practice if you exclude the possibility of feature extraction or any other sort of implicit embedding?

2h agoHN ↗

I'm not an ML expert, but I was thinking of a sort of "guided" embedding. E.g., give the image model some prompt for what it's trying to do? I don't understand why multimodal models generate an embedding that doesn't understand what the model is trying to "figure out".

I think this is similar to how Gemma 4 12B is implemented, but even then I don't think the single layer image embedding is "aware" of the context.

3h agoHN ↗

It's an old paper (from 2025, so, a decade ago in AI years), but the concept is still fascinating. And I'm yet to see it show up in any production models.

If multiple models can use cache representations for this kind of enrichment, the KV cache representations of different models must be somewhat compatible.

What stops us then from going a step further, and producing a model family where all models are "KV aligned", and each model can utilize the KV cache of other models directly?

So, an "expensive" reasoning model can use its full faculties to plan, but "delegate" simple subgoals to a smaller model. That smaller model can access the large model's intent directly, as rich KV cache representations - with no prefill recompute and no associated "handover" latency. Or, likewise, a "cheap" small model can generate a diminished but highly compact KV cache that the "expensive" model can then operate on - for example, for skimming a large file for shallow patterns.