Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Pointers for your search career in 2026(softwaredoug.com ↗)
    discuss
  2. BYD looking to build 5-minute EV charging network in Canada(driving.ca ↗)
    discuss
  3. Hafnium Controversy(wikipedia.org ↗)
    discuss
  4. The Jungle Fugitives: A Tale of Life and Adventure in India (1903)(gutenberg.org ↗)
    discuss
  5. Fossils of Diplodocus found in Europe for first time(livescience.com ↗)
    discuss
  6. LLMs as Oracles: Reliance on LLMs for Subjective Personal Questions(arxiv.org ↗)
    discuss
  7. Tests of the New AI Siri(pogueman.substack.com ↗)
    discuss
  8. Don't Make Job Referrals Public(melashri.net ↗)
    discuss
  9. Show HN: Sokit – a LangChain like harness for Jev (or other System 1 models)(github.com/jodan-alberts ↗)
    discuss
  10. Be alert: targeted attacks on prominent Rustaceans(rust-lang.org ↗)
    discuss
  11. Building geometry solvers for the IMO Grand Challenge(2020)(jesse.so ↗)
    discuss
  12. Show HN: Agent Router picks Cursor/Claude and effort per task, then launches it(github.com/nidhi-singh02 ↗)
    1comments
  13. Sex Without the Shuffle(mpg.de ↗)
    discuss
  14. This new web server lets existing PHP apps serve >10x more users than all others(qbixserver.com ↗)
    discuss
  15. Routing only a few domains over a VPN(mendhak.com ↗)
    discuss
  16. Ireland to boycott Eurovision again over Israeli participation(theguardian.com ↗)
    discuss
  17. Show HN: Ax-Check.com – Can Agents Use Your Product?(ax-check.com ↗)
    discuss
  18. Two Hundred and Fifty Years of Non-Linear Progress(archpaper.com ↗)
    discuss
  19. Books of 2026 So Far(newyorker.com ↗)
    discuss
  20. Walking Upright Is Written in the Bones of Our Ancestors(nautil.us ↗)
    discuss
  21. China's prefab home factories shift from Covid boxes to luxury exports(reuters.com ↗)
    1comments
  22. OpenAI Misalignment Reports(alignment.openai.com ↗)
    discuss
  23. Show HN: WFCLab – Interactive Wave Function Collapse Explorer (With Source)(angularangel.neocities.org ↗)
    discuss
  24. Grafana Coding Agent Observability(github.com/grafana ↗)
    discuss
  25. Show HN: Daily updated UI sections and components library(uitopic.com ↗)
    discuss
  26. When an AI Agent Deletes Your Database(obsidiansecurity.com ↗)
    1comments
  27. Tutor-MCP – An adaptive learning engine for any subject(github.com/arnaudguiovanna ↗)
    discuss
  28. Added a reusable retry client to try, thanks to Go 1.27's generic methods(github.com/nodivbyzero ↗)
    discuss
  29. Union Alpha is a multimodal model built for research, coding, agentic workflows(openrouter.ai ↗)
    discuss
  30. Just Prompt, Motherfucker(just-prompt-motherfucker.com ↗)
    3comments

LLM Classification Is Feature Engineering

52 pointsby 2h agominimallysufficient.com
11 comments
2h 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.

2h 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.

26m agoHN ↗

Much like how you shouldn't ask the LLM to solve a (repeated, logical) problem, but you should instead prompt it to generate code that you can inspect/test/fix/reuse.

2h 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?

2h 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?

2h 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.

2h 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?

1h agoHN ↗

Really needs a comparison to the "megaprompt" itself (i.e. "here is a tweet, rate it as ironic or not, considering the following properties; explain your reasoning then output your final answer at the end"). I bet that would get you very far towards the logistic classifier, and would generalize much better out of distribution.

1h agoHN ↗

You can also get LLM to optimize rules for a rules engine iteratively against some dataset.

It’s sort of like memoizing or distilling the knowledge. Works really well for certain type of problems.