Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. WordPress Board Resignations(techcrunch.com)
    discuss
  2. I'm Handing Off Render Engine(kjaymiller.com)
    discuss
  3. The Sheep That Stop Wildfires(newyorker.com)
    discuss
  4. Show HN: LARP Capital – Prestige as a Service(larpcapital.us)
    discuss
  5. AI Exec: We May Have Pulled Off "The Largest Theft of Labor in Human History"(motherjones.com)
    1comments
  6. Web Data – Latest Capital Raise(firecrawl.dev)
    1comments
  7. Hiring Smart(kk.org)
    discuss
  8. Recorded, Not Proven(claude.ai)
    discuss
  9. Git-bug, project bug tracker tool using Git objects as storage, releases v0.11.0(github.com/git-bug)
    discuss
  10. The UV index is not the warm sensation of sunlight on bare skin(asciitweezers.com)
    discuss
  11. Relaticle, a self-hosted CRM where AI updates data only after your approval(relaticle.com)
    discuss
  12. No Sloptober(no-sloptober.com)
    7comments
  13. Show HN: NetM8 OS(netm8.com)
    discuss
  14. Show HN: Typed polyglot compiler for CLI/API/MCP generation(github.com/morloc-project)
    discuss
  15. Tinyjs – desktop apps for macOS, Windows, and Linux in ~6 MB(tinyjs.app)
    discuss
  16. I beat all the popular harnesses on FrontierHarness Eval(github.com/tontinton)
    discuss
  17. Microsoft killed FoxPro in 2007. Anyway, here's FoxPro revived(foxscript.org)
    1comments
  18. ArchiveBox v0.9 released with new native apps and 50 new plugins(sweeting.me)
    1comments
  19. Kotlin 2026: Layoffs, AI, Google – Is the Golden Age Over? Jake Wharton Explains [video](youtube.com)
    discuss
  20. Why AI Can't Replace You with Cory Doctorow [YouTube] [video](youtube.com)
    discuss
  21. Open-Weight AI Models Seize Token Lead, but Proprietary Still Make the Money(techstrong.ai)
    discuss
  22. Hive at v5: The Swarm Grew Up, and It Is Learning to Leave the Dashboard(hivecommons.substack.com)
    discuss
  23. DoorDash reaches $131.5M settlement with NYC for failing to pay workers(documentedny.com)
    discuss
  24. Apple's new watches are always listening(theconversation.com)
    discuss
  25. Enough Reason to Act: AI safety needs policy not dismissal(norabble.com)
    discuss
  26. Show HN: Video clip maker/editor right in the browser (supports YouTube)(heahy.com)
    discuss
  27. Show HN: Sandopolis – A portable multi-system Sega emulator
    discuss
  28. Show HN: JevEval, evals using Jev-as-a-judge(deepeval.com)
    discuss
  29. Datapages v0.10.0 Beta Release(github.com/romshark)
    3comments
  30. Kremlin-backed forgery scheme moved $6.9B through global banks(ft.com)
    discuss

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

4 pointsby 1h ago
4 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.

57m 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.

44m 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

31m 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.

8m 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:9b models for both, running on Dell Pro Max GB10 Cuda,128GB.