Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Koòrdinate Thinking(github.com/unmarkedpm)
    1comments
  2. Kalshi asks CFTC to allow margin trading on its platform(cnbc.com)
    discuss
  3. Wishing It So: Excerpt from Will and Attention by Meghan O'Gieblyn(nybooks.com)
    discuss
  4. RomM – Self-Hosted ROM Library with Metadata from IGDB, Screenscraper, MobyGames(digitalescapetools.com)
    discuss
  5. In the beginning, it was good –part 1
    discuss
  6. CoreQuarry(corequarry.com)
    discuss
  7. Show HN: Task and test management as YAML in your Git repo (VS Code)(github.com/gitoza-io)
    discuss
  8. Musings on the Barrow Scale(centauri-dreams.org)
    discuss
  9. What if you could experience the regret of a decision before making it?(solvailabs.com)
    discuss
  10. Show HN: Optimized runtimes for three VLAs on Jetson Thor(github.com/agents2agentsai)
    discuss
  11. Launch HN: Coverage Cat (YC S22) – Umbrella insurance via your personal agent(coveragecat.com)
    discuss
  12. Show HN: Nomoreda – Browser EDA, MCP-Friendly, KiCad/Altium-Compatible(nomoreda.com)
    discuss
  13. NASA Discovery Reveals Complex Water Systems on Early Mars(nasa.gov)
    discuss
  14. TinyJev -Tiny Jev-style decision model that runs offline(github.com/ankit-aglawe)
    discuss
  15. Are the Government's Conversations with AI Accessible Under Public Records Laws? [pdf](reason.com)
    discuss
  16. German court rules Meta liable for scam ads on Facebook and Instagram(thenextweb.com)
    3comments
  17. Priorities and principles for effective third party assessments(openai.com)
    discuss
  18. Scaling Discovery Through Test-Time Communication(arxiv.org)
    discuss
  19. Kclaw is a K8s-based IT-managed, multi-tenant AI assistant platform for teams(github.com/info-struct)
    1comments
  20. We put Jev in production against a cross-encoder. Here are the numbers(getunblocked.com)
    discuss
  21. Show HN: A facial analysis tool with scores and geometry measurements(pslscore.org)
    discuss
  22. Twinkleplop – plop some twinkle in your code (ultrafast syntax highlighting)(twinkleplop.pngwn.at)
    discuss
  23. Grok 4.7 Scores 46 on AI Intelligence Index, Puts SpaceXAI in Top 4 Labs(artificialanalysis.ai)
    discuss
  24. There's a high chance of devices being sold with GrapheneOS preinstalled in 2027(grapheneos.social)
    2comments
  25. Moving from cash to credit cards, PayPal, etc. is an ongoing privacy disaster(grapheneos.social)
    5comments
  26. In 200-Page Report, Cornell Confronts the Crisis in American Higher Education(wsj.com)
    discuss
  27. Shall We Repeal the Laws of Economics – Part III(oaktreecapital.com)
    discuss
  28. Alzheimer's Is No Longer an Untreatable Disease(sciencealert.com)
    discuss
  29. A golden opportunity: Seattle's surveillance pricing ban(thenexusofprivacy.net)
    discuss
  30. ASML Executive Says It Has No Sales in Europe(bloomberg.com)
    1comments

Continual learning on a 28B Learner 1.0 model, new architecture

9 pointsby 1h agolearnerlabs.ai
1 comments
1h agoHN ↗

Our 10 skill demo teaches 10 different skills to an architecturally modified Qwen 3.6 27B, 1 example at a time (batch=1), ~100 tokens per example, for thousands of examples of 1 narrow skill at a time, one skill after another. The entire run is task label free and the model is never told when 1 skill starts and ends. In total 63,282 examples are trained incrementally. Every acquired skill is retained through all the sequential teaches and the base eval holds constant.

Ten skill report: https://learnerlabs.ai/demos/skills/ten-skills

Training data, evals and every recorded answer: https://github.com/learnerlabs-ai/replications

Full context, the letter: https://learnerlabs.ai/

Continual learning in AI models is needed to improve tokens per watt efficiency in the short term, and to tackle difficult challenges where you need compounding over weeks, months or even years, something in context learning can simply not provide.

The goal of online continual learning is to train incrementally on new and narrow task distributions, without having to replay past data. When this is done in existing architectures, the model fits to the current distribution and forgets its base capabilities and previously learnt skills. This is called catastrophic forgetting and it has been an open problem in the field for ~40 years. For context, even labs doing controlled mid training use large batches with mixed data distributions to prevent forgetting during their training runs.

In our setup, data always arrives as one stream. There are no optimizer resets between task distribution boundaries and the model is never told which task or domain it is looking at, or where one ends and the next begins. After every stage we go back and measure everything taught before it again, on held-out data in addition to doing comprehensive base evals. Where we compare, we compare against LoRA with a matched number of trainable parameters (eg LoRA rank 256), on the same data in the same order. In addition, there is no replay of any kind during training. For each skill the base model scores ~0 before training. Of course longer experiments will be run to keep proving this at longer and longer scales.

In our capacity matched comparison with LoRA on four text domains, Learner 1.0 showed 82–125% of LoRA’s 300-update loss reduction in just 25 updates, measured from each condition’s recorded base reference. Earlier domains also slightly improved when later ones trained (positive backward transfer). https://learnerlabs.ai/demos/skills/four-domains

The API we are releasing is in research preview only. We are prioritizing API access to researchers, with an initial focus on understanding the safety implications of this new architecture. The overall experience is slow today due to limited GPU supply. A single user always gets a dedicated GPU for their weights for inference and training, billed for the time they are using the GPU. The cost of training 1 Million tokens of skill data today is ~$6.

I am an engineer who has spent the last decade wrestling with biology, cellular systems and how memory works in them. The above results are only possible due to new architectural and algorithmic primitives that I believe do for continual adaptation of neural nets what attention does for long sequence modeling. The core mechanism for obvious reasons is not disclosed.

Hope you enjoy reading the demonstrations and trying out the API. Appreciate any feedback.