Project ideas from Hacker News discussions.

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

📝 Discussion Summary (Click to expand)

Theme 1 – Optimism about a small, local AGI
Many commenters welcomed the idea that an AGI‑like model could run on modest hardware.
- “Seeing 'Mini-AGI' and '8GB VRAM' in the same sentence is a breath of fresh air. Maybe local AGI isn't so far‑fetched.”hexley19
- “This is the first thing I see in my life that really looks like proto‑AGI, it deserves its name.”bananaflag

Theme 2 – Skepticism due to lack of evidence and undertraining
A substantial portion of the thread questioned whether the model actually works, pointing to absent benchmarks and incoherent outputs.
- “It's an interesting idea, but it doesn't really do anything interesting yet… it is a far, far cry from intelligence. Worse than GPT‑2 as it stands.”dinfinity
- “You can't claim it 'works' if it hasn't produced any coherent responses and is still early in your first training attempt.”ilaksh

Theme 3 – Technical discussion of continual learning / architecture
Several users delved into the mechanistic details—expert swapping, learning‑rate tricks, MoE inefficiencies, and ideas for self‑similar or recursive designs.
- “There is no special algorithm, the finding is that slowing down the LR or the trunk, while keeping the LR of the experts is enough to eliminate most of the forgetting in the network.”volotat
- “Have you thought about making the whole thing 'self‑similar'? … would it be possible to extend/adapt the architecture so that an expert can be a previously trained Mini‑AGI model?”maaaaattttt
- “Making model to consists of many small modules is inefficient on GPU, especially as routing adds data dependencies…”killerstorm


🚀 Project Ideas

Generating project ideas…

Continual Learning Benchmark Suite (CLBench)

Summary

  • Provides a standardized set of tasks and metrics to evaluate continual learning and MoE models, addressing the lack of benchmarks noted by HN commenters.
  • Core value proposition: Enables quick, reproducible assessment of generalization, forgetting, and bits‑per‑byte performance on modest hardware.

Details

Key Value
Target Audience Researchers and hobbyists experimenting with continual learning models like Mini‑AGI
Core Feature Automated benchmark suite (enwik9, chess, arithmetic, language modeling) with forgetting metrics and visual reports
Tech Stack Python, PyTorch, HuggingFace Datasets, Weights & Biases, Jinja2 for reports
Difficulty Medium
Monetization Hobby

Notes

  • Quote: volotat: “I want to wait until it reads the whole corpus I gave and then test it on some simple established benchmarks…” – directly addresses the benchmark gap.
  • Potential: Could spark discussion on fair comparisons and become a go‑to resource for continual learning evaluation, encouraging more rigorous work in the community.

Expert Utilization Visualizer & Analyzer (ExpertVis)

Summary

  • Hooks into MoE training to log expert activation, routing, and natural selection, providing live visualizations that make expert dynamics transparent.
  • Core value proposition: Helps developers debug catastrophic forgetting and expert birth/death processes, directly addressing concerns about opaque expert swapping.

Details

Key Value
Target Audience Developers building Mixture‑of‑Experts models (e.g., Mini‑AGI)
Core Feature Real‑time dashboard showing expert usage histograms, activation timelines, and forgetting curves
Tech Stack Python, PyTorch forward hooks, TensorBoard or Streamlit, Plotly, FastAPI for backend
Difficulty Medium
Monetization Hobby

Notes

  • Quote: volotat: “Each new expert has 16 parents by the way, lol.” and maaaaattttt: “why stay shallow?” – shows interest in expert dynamics.
  • Potential: Could become a standard tool for MoE research, facilitating discussion and practical improvements in expert routing and forgetting mitigation.

Recursive MoE Framework (MoE‑Recurse)

Summary

  • Library enabling hierarchical Mixture‑of‑Experts where each expert can itself be a smaller MoE or pretrained Mini‑AGI, supporting the recursion idea raised by maaaaattttt.
  • Core value proposition: Simplifies experimentation with nested experts, allowing researchers to test whether higher‑level experts acquire intuition‑like abilities.

Details

Key Value
Target Audience Researchers interested in scaling continual learning via expert recursion
Core Feature API to compose experts recursively, handle routing across levels, and share parameters efficiently
Tech Stack Python, PyTorch, HuggingFace Transformers, DeepSpeed (optional), Hydra for config
Difficulty High
Monetization Hobby

Notes

  • Quote: maaaaattttt: “would it be possible to extend/adapt the architecture so that an expert can be a previously trained Mini‑AGI model? And recurse like this?” – directly matches the request.
  • Potential: Opens new architectural possibilities and could spark extensive discussion on scaling continual learning, encouraging novel approaches to generalization and memory retention.

Read Later