Show HN: Watch 14-Byte AI "brains" attempt to solve a 2D maze (Its hard)
22 points - today at 7:15 AM
Hey HackerNews,
I built this project over the last few weeks as a palette cleanser from a failed game launch.
I wanted to learn a bit about AI/Neural-Networks and naively thought I could build a tiny maze-solving AI in a weekend with a 100% solve rate.
Well - I couldn't, but I got pretty close. 14 Bytes total model size, and a 96.5% solve rate on unseen mazes. Trained across 46 phases experimenting with different ideas to improve the model (better performance, smaller size).
Its quite fun to watch the model attempt to solve the maze, when they fail its usually due to getting stuck in a loop. The models have no access to coordinates, map-data, or external memory scratches - they must navigate using only immediate local neighbourhood observations.
There is a model dropdown and you can see how the model has progressed over each phase, constantly getting smaller and increasing its solve rate. Total trained models number in the thousands - I just expose the winning models from each phase.
Overall a fun experiment, with much implementation help from AI agents to scaffold and implement the code (I'm a lazy software dev).
SourceNeat! Maybe consider doing a longer postmortem/blog post on this.
Small bit of feedback: it might help to add an explicit small (i) icon for areas which contain tooltips especially for interfaces (phones) that don't support hover events. I discovered that the models (such as pareto-r1) had additional information by complete accident~
purple-leafy
today at 8:08 PM
Thank you for your feedback!
I definitely will be - my experimentation outpaced my understanding a bit, so I’m slowing down to understand and verify my exact claims.
One of the most fun projects I have ever worked on and I’m excited to share the discoveries.
What kind of postmortem would you like to see? A blog or a hackernews post? And what interests you the most? Is it the compression, the visuals, the neural networks, the discoveries, or something else?
I will update the frontend based on the icon feedback for sure :) thank you!
purple-leafy
today at 7:17 AM
Facts:
- 14 Bytes does not include the runtime!
- All that counts towards the 14 Bytes is the model weights
- Lack of git history is because my actual repo is private, this is just the frontend for now + models
I would love to understand what the inputs actually are. Very neat visualization.
purple-leafy
today at 8:10 PM
Thank you I will update the frontend with a legend and some better alignment understanding with the visuals.
As a quick note, they are mostly immediate environment observations like “is there a wall in front of me, to my left, to my right” etc or “was my last move illegal”.
But every model is different, some have very rich input information like “there is a wall diagonal to my front right” and some only have very coarse inputs.
Because I have trained over 2000 models now I need to go back and get an LLM to label the inputs for me, definitely not a manual task :)
zaydmulani
today at 2:26 PM
[dead]