Developmental neural circuit generation methodology from gene regulatory rules. Simulates cortical neurogenesis from single stem cell to generate domain-general topological substrates amenable to rapid learning. Use when studying developmental priors for neural network initialization, structural bias in neural architecture, or bio-inspired network topology generation.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill developmental-minimal-neural-circuits --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Developmental Minimal Neural Circuits?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-developmental-minimal-neural-circuits-d32dd49d)More formats (shields.io, HTML) on the badges page.
---
name: developmental-minimal-neural-circuits
description: "Developmental neural circuit generation methodology from gene regulatory rules. Simulates cortical neurogenesis from single stem cell to generate domain-general topological substrates amenable to rapid learning. Use when studying developmental priors for neural network initialization, structural bias in neural architecture, or bio-inspired network topology generation."
version: 1.0.0
metadata:
hermes:
source_paper: "Structure as Computation: Developmental Generation of Minimal Neural Circuits (arXiv:2604.15143)"
tags: [neuroscience, developmental, neural-circuits, structural-priors, bio-inspired]
---
# Developmental Minimal Neural Circuits
## Overview
Developmental rules sculpt domain-general topological substrates exceptionally amenable to rapid learning. Simulating cortical neurogenesis from a single stem cell governed by gene regulatory rules yields minimal circuits that achieve 90%+ MNIST accuracy after just one training epoch — demonstrating that biological developmental processes encode powerful structural priors for efficient computation.
## Core Insight
The developmental process spontaneously generates a heterogeneous population of cells, but yields only ~1.7% mature neurons that form densely interconnected cores (avg degree ~4,715 per neuron). These developmentally-generated circuits perform at chance level before training but surge to 89-94% accuracy after a single epoch, suggesting the topology itself encodes computational priors.
## Key Findings
| Metric | Value |
|--------|-------|
| Total cells generated | 5,000 |
| Mature neurons | 85 (1.7%) |
| Synapses formed | 200,400 |
| Avg degree per neuron | 4,715 |
| MNIST accuracy (1 epoch) | 89-94% |
| CIFAR-10 accuracy (1 epoch) | 40.53% |
## Implementation Pattern
```python
import numpy as np
class DevelopmentalCircuitGenerator:
"""Generate neural circuits via developmental neurogenesis simulation."""
def __init__(self, n_stem=1, gene_rules=None):
self.cells = []
self.neurons = []
self.synapses = []
def simulate_neurogenesis(self, target_cells=5000):
"""Simulate developmental process from single stem cell."""
# Gene regulatory rules from mouse scRNA-seq data
# Cell division, differentiation, apoptosis
pass
def extract_mature_neurons(self):
"""Extract the ~1.7% mature neurons from developmental output."""
# Filter by maturation markers
pass
def build_connectome(self):
"""Build dense interconnection matrix from mature neurons."""
# Average degree ~4,715 per neuron
# Densely interconnected core topology
pass
# Usage: developmental circuit as initialization prior
generator = DevelopmentalCircuitGenerator()
circuit = generator.generate(target_cells=5000)
# Initialize network with developmental topology
# Train for 1 epoch → 89-94% MNIST accuracy
```
## Applications
- **Neural architecture initialization**: Use developmental topology as structural prior
- **Bio-inspired network design**: Generate efficient connectivity patterns
- **Transfer learning**: Same circuit achieves 40.5% CIFAR-10 without architectural changes
- **Neuromorphic computing**: Energy-efficient edge deployment with minimal training
## Related Concepts
- Structural priors in deep learning
- Neurogenesis and cortical development
- Small-world network topology
- Few-shot and one-shot learning
## References
- Original paper: arXiv:2604.15143v1
- Author: Duan Zhou
- Published: 2026-04-16
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!