Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. F-Droid 2.0 (f-droid.org)
    210comments
  2. Show HN: Make cursed fonts like Times New Bastard (mitpit.com)
    44comments
  3. Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design (github.com/devdotfast)
    60comments
  4. Opus 5.5 is good at explainer videos (launchvideo.io)
    28comments
  5. Rails World 2026 Opening Keynote [video] (youtube.com)
    167comments
  6. Fearless SIMD v1.0 (linebender.org)
    19comments
  7. Why is the liver so weirdly regenerative? (dynomight.substack.com)
    104comments
  8. Sourcehut account takeover via build logs (XSS in ansi2html) (blog.arusekk.pl)
    3comments
  9. My weird new hobby: Wandering around Tokyo on Google Maps (ahmedhossamdev.com)
    62comments
  10. Using LLMs to trace alchemical knowledge and decode 17th century letters (resobscura.substack.com)
    7comments
  11. Security headers on 4,688 small-business websites: 49.7% met none of 7 criteria (rackcrunch.com)
    3comments
  12. Stable (YC W20) Is Hiring Product Engineers (usestable.com)
    —discuss
  13. The Board Game of the Alpha Nerds (2014) (grantland.com)
    9comments
  14. Book review: Is parallel programming hard, and, if so, what can you do about it? (ahelwer.ca)
    17comments
  15. Google’s Project Suncatcher to put ML infrastructure in space (blog.google)
    118comments
  16. 2DWillNeverDie (2dwillneverdie.com)
    —discuss
  17. Toyota is taking the Corolla electric (electrek.co)
    177comments
  18. The forgotten battle of East Lansing (eastlansinginfo.news)
    10comments
  19. Show HN: Koi.rest – watch some fish and regain your balance (koi.rest)
    —discuss
  20. Two-tier encryption in the UK (macanorak.com)
    350comments
  21. Forging 1024-bit RSA signatures in nearly SNFS time [pdf] (iacr.org)
    5comments
  22. Geothermal heat map of US hot springs (soakingsprings.com)
    24comments
  23. Show HN: AgentRun: DSL to turn agents into workflows (github.com/parcha-ai)
    4comments
  24. Tutoring company tells parents to save their money and 'use AI instead' (afr.com)
    69comments
  25. WaveDigger: Dig into wireless signals to discover their physical locations (github.com/christianrowlands)
    12comments
  26. Early rogue AI agent activity and attempts to hack found on urlquery.net (transluce.org)
    198comments
  27. Web-based IBM 1620 emulator and IPL-V from 1963 (github.com/pkimpel)
    12comments
  28. California is chasing wealth that has feet (landeconomics.org)
    3comments
  29. Show HN: Treepeat – Code similarity detection using Tree-sitter (github.com/dsummersl)
    2comments
  30. August 27 TCRF DDoS Attack Postmortem (xkeeper.net)
    4comments

Show HN: DeepSeek-V4 Latent Reasoning – moving "thinking" into latent space

30 pointsby 1mo agoblog.n.ichol.ai
19 comments
1mo agoHN ↗

Cool idea. I didn't understand what causes the bad response on the first query. Does it mean the first response in every new conversation, or just the first served response after startup?

1mo agoHN ↗

After vLLM startup I observed this on first request only then all further conversations were fine, new and original. Can’t figure out why but seems to be fine after that.

1mo agoHN ↗

Am I missing something or the evals do not compare it to the baseline deepseek-v4-flash? Without a baseline comparison, it is hard to tell what works well and what doesn't

1mo agoHN ↗

I can do that, main difference seems to be this ablation seems to over think simple prompts, but can do a proper eval (might take 2-3 days)

1mo agoHN ↗

The content is unreadable. No comparison to the underlying model. Massive text expansion. Hard to tell if the numbers are real or entirely hallucinated SEO slop.

1mo agoHN ↗

AI2027.com puts this around early 2027 and treats the loss of legible chain-of-thought as a major negative turning point for alignment.

1mo agoHN ↗

Presumably you could decode the chain of thought from the latent representation though.

1mo agoHN ↗

My main motivation is to be able to tune the thinking effort without polluting token IO. Inspiration came from the CoLaR paper and other works showing that repeating laters in an LLM got better results.

1mo agoHN ↗

LinkedIn recently added a “seems like AI slop” button. I.e.: independent of downvoting/not interested/flagging as spam/ToS violation, you can say “this is AI slop”. Maybe we need something like it here

1mo agoHN ↗

Fair criticism, i’ll rewrite it… as this is a pet project and post based on another HN comment.

1mo agoHN ↗

Shout-out to anthropic for having their models have such a strongly distinct writing style and personality that you can recognize their work instantly! It's quite nice to have such an immediate signal that if I were to proceed, I would spend orders of magnitude more time and effort reading the the text than the person claiming author credit spent writing or even reading it themselves.

1mo agoHN ↗

Fair critique, ill rewrite (this is just my personal pet project but thought was cool to share here)

1mo agoHN ↗

I've been hearing forever that latent reasoning is the next step. But none of the frontier labs seem to incorporate it. Any idea why? It doesn't sound so technically challenging. Sure you loose some interpretability but surely everyone would sacrifice that for a step-up in quality. Or at least offer a latent-reasoning-version of the model.

1mo agoHN ↗

you lose CoT monitorability which is a big issue since models have become quite powerful and also often deceptive but i do think that efficiency pressure will keep nudging us toward latent reasoning. looped language models are an active research area. but imagine not being able to monitor mythos' thoughts as it's working through a national security need...

1mo agoHN ↗

LLMs already think in latent space. The generated reasoning tokens are only the surface of what's happening internally. An LLM may write one thing in the traces but decide differently in the latent space. The whole token-based "reasoning" thing was just a clever hack to extend the existing architecture without completely redoing it. In one of Anthropic's recent papers, they added an additional subnetwork trained to map internal states to readable text, so that's probably the vector of further development.

1mo agoHN ↗

The goal of this auxiliary module is to have the model recurse pre-emit trained on good thinking traces. This includes a 6-to-1 compression of thinking tokens.

Therefore output tokens are decodeable, but are trained compressed. So they are approximations of faster thinking.

Interpretability is a mixed bag even with trained tools on top of existing models.

1mo agoHN ↗

I am on my own GPUs so thought it be cool to reduce token output. you can charge per latent loop as a token i guess.

I wanted a knob to keep thinking going until it was sure it was done.