Hacker News

New stories

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