Zing Forum

Reading

Mind-Engine: Particle Neural Network and Synesthetic 3D Neuronal Cellular Automaton Built from Scratch

Explore two original AI systems built entirely from scratch—Cognitron Particle Neural Network and Morpheus Synesthetic 3D Neuronal Cellular Automaton—without using pre-trained models, leveraging hyperdimensional computing encoding and WebGPU rendering technology.

粒子神经网络神经元胞自动机超维计算联觉生成WebGPU无预训练模型AI架构机器学习
Published 2026-04-30 07:42Recent activity 2026-04-30 10:03Estimated read 8 min
Mind-Engine: Particle Neural Network and Synesthetic 3D Neuronal Cellular Automaton Built from Scratch
1

Section 01

Project Introduction: Mind-Engine—Particle Neural Network and Synesthetic 3D Neuronal Cellular Automaton Built from Scratch

The Mind-Engine project explores two original AI paths: Cognitron Particle Neural Network and Morpheus Synesthetic 3D Neuronal Cellular Automaton. Key features include: complete rejection of pre-trained models, use of hyperdimensional computing encoding and WebGPU rendering technology, and re-exploration of the original possibilities of AI architectures.

2

Section 02

Project Background and Core Concepts

Modern AI relies on pre-trained model libraries; most developers fine-tune on their basis but rarely question the dependency. The Mind-Engine team asks: What if we completely abandon pre-trained models and build AI systems from scratch? The core concept is to explore the original possibilities of AI architectures, with Cognitron (3D particle neurons) and Morpheus (cell rule-based growth) representing two different approaches.

3

Section 03

Cognitron Particle Neural Network Architecture and Implementation

Architecture Overview

Cognitron implements a Particle Neural Network (PNN): neurons are particles in 3D space, and the connection graph is dynamically reconstructed based on spatial proximity.

Core Mechanisms

  1. Input Encoding: Text is converted into 10,000-dimensional bipolar hypervectors via a Hyperdimensional Computing (HDC) encoder (based on hashing, no pre-trained embeddings);
  2. Particle Generation: Hypervectors are randomly projected into 3D space to generate particles with position, velocity, mass, and charge;
  3. Forward Propagation: Wave propagation mechanism—queries propagate 4-6 hops from input particles to calculate energy flow;
  4. Training: Particle Gradient Descent (PGD) algorithm, which integrates Particle Swarm Optimization (PSO) and gradient descent.

Technical Implementation

  • Core model implemented with NumPy, no ML library dependencies;
  • Frontend: Next.js 16 + React Three Fiber + WebGPU rendering;
  • Backend: FastAPI provides inference services, supporting real-time browser operation.
4

Section 04

Morpheus Synesthetic 3D Neuronal Cellular Automaton Design

Architecture Overview

Morpheus extends Growing-NCA to 3D space, adding an audio frequency modality to achieve synesthetic generation of geometry, color, and sound.

Architecture Design

  • 32×32×32 3D grid, each cell has 16-channel states (RGB, transparency, audio frequency, hidden states);
  • Update process: 3D Sobel kernel perception → small MLP (16→96→16) state update → residual connection + 50% random masking → transparency pooling to determine survival;
  • Synesthetic Binding: Auxiliary loss correlates audio frequencies with color hues (e.g., red corresponds to specific frequency bands).

Training and Inference

  • Server-side training with PyTorch (no pre-trained weights), targets include shapes like spheres and spirals;
  • Browser loads weights, users select target shapes, observe 3D growth, and experience synesthetic audio.
5

Section 05

Innovation Points and Research Value

Innovation Points

  • The combination of PNN in Cognitron (spatial neurons + PSO-gradient hybrid + HDC encoding + wave reasoning) has not been published in literature;
  • Morpheus's audio-cell correspondence is the only new angle in the field of neuronal cellular automata (confirmed by a novelty-research agent).

Research Value

  • Reactivates hyperdimensional computing (an ancient neuro-symbolic method) and combines it with modern deep learning;
  • Provides new ideas for dynamic network topology;
  • Opens up a new direction for multimodal AI (synesthetic generation).
6

Section 06

Use Cases and Interactive Demos

Cognitron Use Cases

Users input text ideas → observe particles clustering in 3D space based on semantic relationships; after training, particles drift toward semantic neighbors; during queries, wave propagation lights up relevant particle clusters.

Morpheus Use Cases

Users select target shapes → observe cells growing into 3D structures from scratch; simultaneously play corresponding chords to experience visual-auditory synesthesia. Switching targets produces different shape and sound combinations.

7

Section 07

Limitations and Future Directions

Limitations

  • The convergence of the PGD algorithm is less stable than traditional optimizers (SGD fallback mechanism implemented);
  • The expressive power of the hyperdimensional encoder needs verification;
  • 3D NCA has high computational cost (default 32³ resolution).

Future Directions

  • Expand the scale of particle neural networks;
  • Explore the generation of more complex geometric shapes;
  • Extend synesthesia to more modalities like touch and smell;
  • Inspire more researchers to explore AI architectures beyond pre-trained models.
8

Section 08

Project Conclusion

Mind-Engine represents a bold exploration in the era dominated by pre-trained Transformers, reminding us that the possibilities of AI are far from exhausted. By building systems from scratch, the team not only created two usable tools but also reopened fundamental questions about the nature of neural networks and the forms of intelligent computing. This project is suitable for AI architecture enthusiasts and researchers, proving that original architecture design can still lead to unexpected discoveries even with limited resources.