Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA(global.fujitsu ↗)
    141comments
  2. Hister: A private search engine for the pages you visit and the files you keep(github.com/asciimoo ↗)
    31comments
  3. CrowdSec Source Code Leak(crowdsec.net ↗)
    22comments
  4. Rate limits on GitLab.com are changing(about.gitlab.com ↗)
    79comments
  5. Whoisinspace.com/(whoisinspace.com ↗)
    37comments
  6. Infinite-Parameter LLMs: Generating and Adapting Weights from Live Data(arxiv.org ↗)
    3comments
  7. Vinix – A modern operating system written in V(vinix-os.org ↗)
    32comments
  8. Show HN: Aclif – Agent CLI framework: one grammar, canonical names across SaaS(aclif.ai ↗)
    7comments
  9. Zettascale (YC S24) Is Hiring ASIC/FPGA Engineers to Build Chips for ASI(zscc.ai ↗)
    discuss
  10. Launch HN: Skillsync (YC W26) – AI chat sessions made portable across agents
    12comments
  11. How GLM built its own inference infrastructure(z.ai ↗)
    221comments
  12. Why I didn’t sign the Fields medallists’ letter(gowers.wordpress.com ↗)
    142comments
  13. One Year of Sponsored Servo Development(servo.org ↗)
    125comments
  14. Grand MS-DOS Gaming General MIDI Showdown(johnnovak.net ↗)
    3comments
  15. Ask HN: How to recover Google auth after phone stolen?
    44comments
  16. Show HN: Share your AI Setup, Learn from others(mysetup.ai ↗)
    60comments
  17. The American Religion of Self-Storage Facilities(newyorker.com ↗)
    145comments
  18. CCC invites all model citizens to 40C3(ccc.de ↗)
    108comments
  19. Towards Self-Driving Codebases(detail.dev ↗)
    3comments
  20. The Return of Sail Power: Cargo Ships Are Turning Back to the Wind(gcaptain.com ↗)
    98comments
  21. Mastering Layout Engines in Graphviz: Dot vs. Neato vs. Twopi vs. Circo(visual-paradigm.com ↗)
    5comments
  22. LLM Classification Is Feature Engineering(minimallysufficient.com ↗)
    11comments
  23. Running Ubuntu on the Lenovo IdeaPad Duet(vhaudiquet.fr ↗)
    1comments
  24. Artificial intelligence now beats some of the best human forecasters(economist.com ↗)
    69comments
  25. My temporary PHP fix from 2014 has nearly 20M installs. Today I'm deprecating it(jakeasmith.com ↗)
    82comments
  26. Economic policy for AGI(deepmind.com ↗)
    3comments
  27. Show HN: AutoBot – live voice control for long-running AI work(github.com/demeyer1 ↗)
    2comments
  28. Show HN: I built a new version of my fun spatial 3D online meeting app(flat.social ↗)
    50comments
  29. The Relation Between Mathematics and Physics by Paul Dirac (1939)(cam.ac.uk ↗)
    46comments
  30. Keys Not Included: recovering the signing keys for US driver's license barcodes(ryan.science ↗)
    137comments

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.

23m 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?

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

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