Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. F-Droid 2.0 (f-droid.org)
    240comments
  2. Show HN: Koi.rest – watch some fish and regain your balance (koi.rest)
    18comments
  3. Show HN: Make cursed fonts like Times New Bastard (mitpit.com)
    57comments
  4. California is chasing wealth that has feet (landeconomics.org)
    225comments
  5. Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design (github.com/devdotfast)
    72comments
  6. GitLab Outage (status.gitlab.com)
    8comments
  7. Back and shoulder surgery is often worse than useless (economist.com)
    6comments
  8. Why is the liver so weirdly regenerative? (dynomight.substack.com)
    130comments
  9. 2DWillNeverDie (2dwillneverdie.com)
    4comments
  10. Fearless SIMD v1.0 (linebender.org)
    27comments
  11. Rails World 2026 Opening Keynote [video] (youtube.com)
    217comments
  12. My weird new hobby: Wandering around Tokyo on Google Maps (ahmedhossamdev.com)
    76comments
  13. Using LLMs to trace alchemical knowledge and decode 17th century letters (resobscura.substack.com)
    9comments
  14. International observers to investigate Swedish election fraud (tv4.se)
    9comments
  15. Toyota is taking the Corolla electric (electrek.co)
    244comments
  16. Stable (YC W20) Is Hiring Product Engineers (usestable.com)
    —discuss
  17. Google’s Project Suncatcher to put ML infrastructure in space (blog.google)
    151comments
  18. Book review: Is parallel programming hard, and, if so, what can you do about it? (ahelwer.ca)
    22comments
  19. The Board Game of the Alpha Nerds (2014) (grantland.com)
    17comments
  20. Sourcehut account takeover via build logs (XSS in ansi2html) (blog.arusekk.pl)
    8comments
  21. Two-tier encryption in the UK (macanorak.com)
    370comments
  22. Security auditing in the age of (good enough) AI (trailofbits.com)
    2comments
  23. The forgotten battle of East Lansing (eastlansinginfo.news)
    12comments
  24. Forging 1024-bit RSA signatures in nearly SNFS time [pdf] (iacr.org)
    6comments
  25. Geothermal heat map of US hot springs (soakingsprings.com)
    30comments
  26. Early rogue AI agent activity and attempts to hack found on urlquery.net (transluce.org)
    217comments
  27. Opus 5.5 is good at explainer videos (launchvideo.io)
    74comments
  28. WaveDigger: Dig into wireless signals to discover their physical locations (github.com/christianrowlands)
    14comments
  29. Tutoring company tells parents to save their money and 'use AI instead' (afr.com)
    112comments
  30. Show HN: AgentRun: DSL to turn agents into workflows (github.com/parcha-ai)
    6comments

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.