Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. "Reconstructive UI"(judi.systems ↗)
    discuss
  2. Not a Bootcamp(recurse.com ↗)
    discuss
  3. Ask HN: Why does cmux need 200 settings?
    discuss
  4. Gods Don't Give Gifts(godsdontgivegifts.com ↗)
    1comments
  5. Ainglish, an English dialect for AI agents(ainglish.org ↗)
    discuss
  6. AI Is a Cheat Code for Your Brain(stevechazin.com ↗)
    discuss
  7. Can Phones Explain PISA?(commonreader.co.uk ↗)
    discuss
  8. The curio cabinet of medieval mental health(aeon.co ↗)
    discuss
  9. Four Days in Jotunheimen(benjaminschneider.ch ↗)
    discuss
  10. The Edge of the Unsayable(poetryfoundation.org ↗)
    discuss
  11. More UC students are failing intro math courses as regents weigh reinstating SAT(latimes.com ↗)
    discuss
  12. Human brain cells transplanted into mice in 'most extensive' integration(nature.com ↗)
    discuss
  13. The Case for Reasoning Transparency(deepmind.com ↗)
    discuss
  14. Ask HN: About map enshittification: Have you noticed the maps have gotten worse?
    discuss
  15. AI caught telling future versions of itself to bypass human controls(the-independent.com ↗)
    discuss
  16. Ed Sheeran Opener Aaron Rowe Pulls Out of Tour After Macklemore Drop(variety.com ↗)
    discuss
  17. Show HN: Algebraic Effect System for Python(effecton.dev ↗)
    discuss
  18. Jevmlx(github.com/bnsd55 ↗)
    discuss
  19. My Dumbphone Made My Life Better. It Made Everyone Else's Worse(nytimes.com ↗)
    1comments
  20. hister(github.com/asciimoo ↗)
    discuss
  21. Show HN: Die With Me – Claude and Codex rate limits as AIM away messages(diewithme.co ↗)
    2comments
  22. Aesthetic Governance, Mega-Events and the Urban Poor(doingsociology.org ↗)
    1comments
  23. The Shortcut Became the System(christophermeiklejohn.com ↗)
    discuss
  24. Classic ML to Cope with Dumb LLM Judges (2025)(softwaredoug.com ↗)
    discuss
  25. Launch HN: Skillsync (YC W26) – AI chat sessions made portable across agents(skillsync.com ↗)
    discuss
  26. Show HN: Paste a song and get 5 license-free cousins that sound like it(mockfreeli.org ↗)
    discuss
  27. Show HN: Lightning strike VFX in Three.js, a step-by-step breakdown(threevfx.com ↗)
    discuss
  28. AODM: AI Optimized Data Markup(github.com/fucaspark ↗)
    discuss
  29. There Is No AI Agent(zak.im ↗)
    discuss
  30. Show HN: A toy implementation of ELF relocation weird machines(github.com/scriptod911 ↗)
    discuss

LLM Classification Is Feature Engineering

27 pointsby 1h agominimallysufficient.com
7 comments
46m agoHN ↗

I don't understand the point they are trying to make.

It's very often (always?) the case that something general also solves particular problems.

    A sorting algorithm is an implementation of min()

    A parser also is a syntax checker.

    A route planner is a reachability checker. 

    A computer algebra system is a basic arithmetic calculator.

    A general constraint solver is a Soduku hint maker.

It's true that LLM output can be used as an input to another classifier, this is also true of any classifier. The improvement on top of the straight LLM classification is relatively small, and I would argue that working on the prompt or just including in the prompt for the LLM what features might be useful to consider would likely work even better.

Fundamentally I read this article as: We want to build a simpler, dumbed down clone of Mathematica, so we cobbled together the following pieces... We also needed a way to do arithmetic, so we also include a copy of Mathematica to do basic arithmetic.

43m agoHN ↗

I took the point as: don't make the LLM the classifier. Use it to turn messy input into useful features, then let a normal model make the actual decision. That gives you thresholds/calibration you can inspect.

What I'm not sure about is how stable those features are when you switch the underlying LLM or model version.

29m agoHN ↗

Why does he first ask to label "ironic" or "not", and then answer the feature questions? Wouldn't it be better to reverse the order?

28m agoHN ↗

Why not use a text embedder for the unstructured data and concatenate with the structured data?

For example you could freeze most of the layers of the embedder but let the final ones learn. Then you wouldn’t need to do either feature or prompt engineering?

21m agoHN ↗

Calibration / Threshold Control

The amount of thinking is relatively calibrated. Ask an obvious classification, you get an instant answer. Ask a tricky one, much more thinking.

20m agoHN ↗

I really wish people would define terms when using math. What is y? What is LLM(x)? Presumably it evaluates to some real number so that it can be fed to the logistic sigmoid function. If it is the logistic function, then why does beta going to infinity matter? It seems to just collapse the output of the sigmoid function to 1 and make the value of LLM(x) meaningless instead of their claim that it recovers the LLM classifier. What is the function I()?

Maybe these are well understood terms in some field? Maybe I'm just lost?