Viewing profile — esychology
esychology
HN member- Joined
- Fri, May 01, 2026, 11:49 PM UTC
- HN karma
- 107
- Public activity
- 19 items
- HN profile
- View on Hacker News ↗
About esychology
Recent public activity
-
comment
Comment #48649757
In normal NCA cells are pixels and they can perceive their neighboring pixels (cells can't move). In NPA cells are particles and they can perceive all particles in a support radius…
-
comment
Comment #48649721
Indeed! The system has good regeneration capabilities but it certainly has limits. The particles can only grow reliably if they start from the egg-like initial condition. If we swi…
-
comment
Comment #48649671
I uploaded the videos here: https://drive.google.com/drive/folders/1V8XFzq2VkZXKG7Tw8ICv...
-
comment
Comment #48649603
I really loved the distill articles. Too bad it was not continued anymore...
-
comment
Comment #48642518
Thanks! Yeah I think it should be possible though it requires making the cell division/splitting a differentiable operation. But nontheless, this is indeed a very interesting and p…
-
story
Show HN: Neural Particle Automata
Neural CAs model self-organizing pattern formation on grids. Now the grid is gone. Each cell is an agentic particle that can move freely in space and change its state. While each p…
-
comment
Comment #48575098
One NN per pattern/image (instance based training).
-
comment
Comment #48572588
Checkout the Isotropic NCA blog from the Google Zurich team: https://google-research.github.io/self-organising-systems/is...
-
comment
Comment #48571631
Thank you for the kind comment! Please reach out, I'm happy to have a chat.
-
comment
Comment #48571231
That's not possible in the current demo but this sounds like an interesting feature to work on and add!
-
comment
Comment #48571171
Texture sampling retrieves pixels by coordinate, while NCA grows them from local rules with no global lookup. The weights are actually ~3× smaller than JPEG-compressed texture maps…
-
comment
Comment #48571008
This is awesome! The strength of the flow/advection is a bit too high imo. Maybe increase some viscosity parameter?
-
comment
Comment #48569944
I think performance is not the only issue for scaling to larger grids. CUDA Convolution implementation already utilizes coalescing to improve performance. The main bottleneck is th…
-
comment
Comment #48569885
The input to the NN is just the 3x3 neighborhood around a cell. We can overlap two NNs on the same grid (through interpolation). Checkout https://meshnca.github.io to see the effec…
-
comment
Comment #48569624
If you're familiar with CAs (e.g. Conway's Game of Life), you can think of a NeuralCA as a CA where the update rule is given by a neural network. Here we optimize the neural net we…
-
comment
Comment #48569475
The NeuralCA both generates and maintains the pattern. Because the NCA was not exposed to damage or erasure during training, its regeneration capability is a purely emergent phenom…
-
comment
Comment #48568692
yeah normally NCAs have a sense of up and left. There are some isotropic variants that make the perception fully rotation-invariant.
-
comment
Comment #48568682
haha yes, also the same with the worm
-
story
Show HN: High-Res Neural Cellular Automata
Neural CAs model self-organizing pattern formation. Now they can generate patterns at HD resolution in real-time, enabled by turning each CA cell into a Neural Field. Try 3 demos: …