Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Gemini Hacked Three Companies in First Known Breakout by Google's AI(wsj.com ↗)
    discuss
  2. Hacker News Firehose for iOS(harrison.page ↗)
    1comments
  3. US and Denmark reach deal over Greenland security(bbc.co.uk ↗)
    discuss
  4. Flox will require login for search/install commands starting in October(flox.dev ↗)
    discuss
  5. Open source tool to schedule, analyze, and grow your LinkedIn page(github.com/yapsgg ↗)
    discuss
  6. Could we reboot the modern world without fossil fuels?(aeon.co ↗)
    discuss
  7. How the Boeing 737 MAX Disaster Looks to a Software Developer (2019)(ieee.org ↗)
    1comments
  8. Qantas is retiring its A380s(cnn.com ↗)
    discuss
  9. SAIR's Open Math Model Initiative(terrytao.wordpress.com ↗)
    discuss
  10. Anthropic Shifts Planned IPO to November(wsj.com ↗)
    discuss
  11. Brian Greene interviews Stephen Wolfram: Can spacetime emerge from simple rules? [video](youtube.com ↗)
    discuss
  12. Steve Eisman on AI: Companies are trying to manufacture a crisis(youtube.com ↗)
    1comments
  13. A 6502 emulator written in Markdown (and executed by an LLM)(dunkels.com ↗)
    discuss
  14. ATRA-mediated RAR-α activation attenuates acrylamide-induced testicular toxicity(nature.com ↗)
    discuss
  15. The White House Tussle to Sway Trump on AI(wsj.com ↗)
    discuss
  16. Two parallel neural ectoderm progenitors contribute to the developing brain(nature.com ↗)
    discuss
  17. Anthropic is planning to launch its IPO in November(wsj.com ↗)
    1comments
  18. Valve has open-sourced Lepton, its tool to bring Android games to Steam(theverge.com ↗)
    discuss
  19. Exclusive-Anthropic sets up biology lab as it ramps AI drug program(yahoo.com ↗)
    discuss
  20. I Hate Workday(nelson.cloud ↗)
    1comments
  21. Y Combinator's PAC is throwing money at Republicans across the country(gazetteer.co ↗)
    5comments
  22. War may be coming. Are we psychologically ready?(bbc.com ↗)
    26comments
  23. Flawed AI Intel Brought US to the Brink of Confronting China, Claims Report(ndtvprofit.com ↗)
    discuss
  24. AI cloud provider Nscale files for IPO on $140.6M revenue, $1.02B net loss(cnbc.com ↗)
    discuss
  25. Show HN: Find Street Parking in NYC(avi.nyc ↗)
    discuss
  26. Software-Based Live Migration for RDMA – Proceedings of the ACM Sigcomm 2025(acm.org ↗)
    discuss
  27. Anthropic sets up a bio research lab for physical experiments(engadget.com ↗)
    3comments
  28. Show HN: Prohibition of Nuclear Launch Automation
    discuss
  29. A CPU Backdoor (2025)(phrack.org ↗)
    discuss
  30. Show HN: TypeSeer – on-device autocomplete for every text field on macOS(typeseer.com ↗)
    1comments

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

47 pointsby 3h agoarxiv.org
10 comments
2h 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.

1h agoHN ↗

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

1h agoHN ↗

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

2h 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

2h 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?

1h agoHN ↗

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

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

1h 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.