Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. GB Names(geods.ac.uk)
    discuss
  2. AI staff complain of mental toll over fears of threat to society(ft.com)
    1comments
  3. Show HN: I built a macOS Quick Look app for Markdown, SQLite, ZIP, and 300 more(quicklookpro.com)
    discuss
  4. The current balance of power in open models(interconnects.ai)
    discuss
  5. AI Scenario in 2070(docs.google.com)
    1comments
  6. Autonomous AI Agents Are Breaking into Online Retailers(gambit.security)
    1comments
  7. Show HN: Layered writing – a novel way to write and read digital text(github.com/aartoghrul)
    discuss
  8. tRNA Therapy(science.org)
    discuss
  9. AI is getting cheaper more quickly than any other transformative tech in history(epoch.ai)
    1comments
  10. The strange death of libertarianism(spectator.com)
    3comments
  11. Eating Alone(longreads.com)
    discuss
  12. Evaluating smolvm as a sandbox for untrusted Python and JavaScript(simonwillison.net)
    discuss
  13. AI Abundance Requires a 4-Hour Workweek(elnahla.com)
    discuss
  14. DuckDB supports a new SQL IDE(duckdb.org)
    discuss
  15. MariaDB's official docs now list LibreDB Studio as a graphical client(mariadb.com)
    discuss
  16. Dragonfly and LibreDB Studio: Redis-compatible database management(dragonflydb.io)
    discuss
  17. Show HN: LinearSolveBench, interesting new benchmark to discover linear solvers(autodidakt.ai)
    discuss
  18. Show HN: Jade Email. Unlimited emails for your domain plus AI Agent support(jade.email)
    1comments
  19. Gadgetbridge: A FOSS alternative to your fitness watch's app(manualdousuario.net)
    discuss
  20. UmbrelOS 2.0: Your cloud, at home [video](youtube.com)
    discuss
  21. Fat Bear Week(explore.org)
    discuss
  22. Meta's New Muse AI Agent Read My Private Messages. I Never Asked It To(inc.com)
    discuss
  23. Analyzing Jev Outcomes with a Validator(gonzo.engineer)
    discuss
  24. My Claude Code setup (11 commands, 3 agents) + shared Meta "design third brain"(johnmaartifacts.substack.com)
    discuss
  25. Jevlish: A JavaScript front end for Jev(jacobgoldfarb.github.io)
    2comments
  26. Comrade – A P2P Alternative to Tmate(github.com/dangowrt)
    discuss
  27. Orbital's Sam Brovda and Bill Ackman get pro-Palestinan woman fired from KPMG(twitter.com/redpillsayian)
    1comments
  28. Aetheria – a local-first agent harness that works online or offline(github.com/denisrigsby)
    discuss
  29. When the Debugger Lies(danielmangum.com)
    discuss
  30. The HUGS Stack – Hypermedia, Unix, Go, SQLite(housecat.com)
    discuss

Ask HN: When is fine-tuning a small LLM worth it?

5 pointsby 1h ago
5 comments
I'd be interested in hearing about your experiences. What kind of task did you use it for, what model did you train, and what were the results?

Feel free to share examples of what you've tried.

1h agoHN ↗

It's worth it if a) you have a decent sample size of data for your problem and b) you have a cost-effective infra to host it.

Notably the latter is more of the bottleneck, particularly with the price race-to-zero with models such as GPT-6 Luna.

1h agoHN ↗

There are allegedly multi-tenant LoRA offerings in the works which would change the hosting-pricing constraints considerably. Keeping my fingers crossed they materialize

1h agoHN ↗

Maybe when you want to learn the process for when/if you ever need to fine-tune a larger model?

It's faster to make iterate when you're toying around with a 1B model than a 27B one.

54m agoHN ↗

I've trained two small models, one I attempted to train it to be an expert (decent?) hearts (card game) player, and the other I trained on dream interpretation texts, I wanted to see if a model could interpret dreams reasonably well if it were trained on all the literature in existence (that I could find anyway). The hearts experiment was a general failure because the game of hearts as played by humans just has too many strategies to consider. I trained it purely on games (~20,000 hands of hearts in the RL dataset I generated) and the trained model did about as good as any decently written procedural game logic would have. the dream analyst training was a bit more successful. I can hand the model a dream log and it will offer some interesting insights. are they accurate? hard to say, it's a very subjective type of training, but definitely a better experiment than the hearts expert training run. in both cases the biggest and most time intensive part is generating the training dataset. building the LoRa is the easy part.

I was using Qwen3.5:2b models for both, running on Dell Pro Max GB10 Cuda,128GB.

42m agoHN ↗

I personally would only do it if I need it to solve a highly specialized problem that requires every inch of privacy I can get. Otherwise there are better options out there