Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Can gzip be a language model?(nathan.rs)
    62comments
  2. AMD's random number generator can't generate a 0?(flatassembler.net)
    3comments
  3. MiMo v2.6(xiaomi.com)
    406comments
  4. Spymarks, Not Watermarks(brand.io)
    113comments
  5. Study: Young users (9 to 18Y) ditch Google for AI, with unknown consequences(norwegianscitechnews.com)
    41comments
  6. I said no and Apple said yes(dbushell.com)
    96comments
  7. Transformers Explained Visually(poloclub.github.io)
    65comments
  8. Attention is all you have(alicegg.tech)
    245comments
  9. What Sun got wrong(dtrace.org)
    343comments
  10. MiMo-v2.6-Pro: Intelligence, Performance and Price Analysis(artificialanalysis.ai)
    20comments
  11. I don't want to read what you didn't write(colinbreck.com)
    282comments
  12. AI coding has made CI a bottleneck, so we reworked ours to keep up(linear.app)
    271comments
  13. Looking forward to Git 2.56 – and 3.0(lwn.net)
    61comments
  14. Divide by depth for instant 3D(gabrieloc.com)
    29comments
  15. NASA’s Mars Sample Return mission is dead(science.org)
    327comments
  16. Claude Status – Elevated errors for multiple models(claude.com)
    84comments
  17. Engineering Memory: On learning to memorize first 100 digits of pi (2024)(gregorygundersen.com)
    10comments
  18. What It's Like to Work in One of America's Data Centers(wsj.com)
    2comments
  19. A font that reads what you wrote(rohanadwankar.github.io)
    7comments
  20. JavaFX 27 Native Image on a Raspberry Pi 5(ennerf.github.io)
    discuss
  21. The Advisory Group on Mathematics and Artificial Intelligence(terrytao.wordpress.com)
    66comments
  22. World Wide Words(worldwidewords.org)
    1comments
  23. PDF Forgeries Are Surprisingly Rare (2022)(gwern.net)
    36comments
  24. Used ThinkPad Buyer's Guide (2019)(bobble.tech)
    10comments
  25. Socrates vs. the Written Word (2011)(wondermark.com)
    23comments
  26. Python Workers are now generally available(cloudflare.com)
    38comments
  27. HERMES radio enables voice and data communication over vast distances(ieee.org)
    60comments
  28. How do traffic signals work? (2019)(practical.engineering)
    63comments
  29. Apple Copland D11E4 Booting in the Browser(pagetable.com)
    40comments
  30. Frontier AI on Your Own Hardware(timdettmers.com)
    81comments

Can gzip be a language model?

15 pointsby 3mo agonathan.rs
2 comments
3mo agoHN ↗

LLMs are very good at lossless compression via arithmetic coding. But I didn't know that it was possible to go the reverse direction (do language modeling via a compressor). It's not super great quality, but I'm surprised it worked! Other compression algorithms (like PPMd) use variable n-grams under the hood, and should be much better (although less interesting due to already containing basic language models internally).