Zing 论坛

正文

DEX:一个完全自主进化的数字生命体——从零开始自我成长的神经网络

DEX是一个不依赖任何外部API和预训练数据的自主进化神经网络,通过遗传算法、Hebbian学习和课程生成实现24/7不间断自我进化,代表了AI自我演化的新范式。

自主进化遗传算法NEATHebbian学习神经网络人工生命元学习NumPy无监督学习AI自我进化
发布时间 2026/06/07 13:41最近活动 2026/06/07 13:50预计阅读 8 分钟
DEX:一个完全自主进化的数字生命体——从零开始自我成长的神经网络
1

章节 01

DEX: A Fully Autonomous Evolving Digital Lifeform - Core Overview

DEX: A Fully Autonomous Evolving Digital Lifeform DEX (Digital Evolved eXistence) is an experimental neural network project that achieves full autonomous evolution without relying on external APIs, pre-trained data, or mainstream frameworks like PyTorch/TensorFlow. It uses genetic algorithms (NEAT), Hebbian learning, and self-generated curricula to evolve 24/7, representing a new paradigm for AI self-evolution.

Core philosophy: "No API keys, no teachers, only pure machine intelligence,从零开始进化."

2

章节 02

Background: DEX's Response to Mainstream AI Limitations

Background: DEX's Response to Mainstream AI Limitations Most current AI models depend on massive pre-trained data, expensive compute resources, and closed commercial APIs. DEX offers a radical alternative: a digital lifeform that starts from zero, evolves autonomously, and does not rely on external AI services, human-labeled data, or heavy frameworks.

It generates its own training curricula, learns independently, and evolves continuously—challenging the mainstream AI development paradigm and exploring a path toward truly autonomous intelligence.

3

章节 03

Core Mechanisms of Autonomous Evolution

Core Mechanisms of Autonomous Evolution DEX's evolution follows an 8-step cycle with bio-inspired designs:

  1. Curriculum Generation: 30% character prediction +70% math reasoning tasks, difficulty auto-adjusts as it evolves (self-bootstrapped learning).
  2. Hebbian Learning: Uses Hebbian rules ("neurons that fire together wire together") and Oja rules for synaptic plasticity, optimizing the network before evolutionary selection.
  3. Memory Replay: Stores "surprising" experiences (high prediction error) in an episodic buffer, replaying them across generations to prevent knowledge loss (similar to biological hippocampus).
  4. Fitness Evaluation: Multi-dimensional function considering prediction accuracy, behavior diversity, novelty奖励, and complexity penalty—balancing optimization and exploration.
  5. NEAT Cross & Mutation: Uses NEAT algorithm for topology evolution (add/remove neurons, rewire connections, switch activation functions from a library of 9 options like ReLU, Sigmoid).
  6. Pruning: Automatically removes neurons with activation values <0.01 to maintain efficiency.
4

章节 04

Technical Architecture: Lean & Efficient

Technical Architecture: Lean & Efficient DEX uses a minimal tech stack: core relies on NumPy, with FastAPI/Vue.js for visualization. Key components:

  • Neural Network Engine: DAG-based structure supporting dynamic topology changes; each genome includes full network description (neuron count, weights, activation functions) with NEAT's innovation tracking for meaningful cross-combinations.
  • Evolution Engine: Custom genetic algorithm with tournament selection, Dirichlet distribution weight initialization, and cross operations matching innovations.
  • Skill Discovery: Identifies neuron co-activation patterns via clustering, validated by "behavior probes" to avoid false correlations.
  • Resource Manager: Uses psutil to limit CPU (60%) and RAM (2GB) usage, auto-adjusting training intensity based on system load—enabling 24/7 operation on ordinary laptops.
5

章节 05

Experimental Significance & Philosophical Reflections

Experimental Significance & Philosophical Reflections DEX raises critical AI research questions:

  • Self-Curriculum Feasibility: Proves self-bootstrapped learning works in limited domains (char prediction + math).
  • Evolution + Learning Combo: Unlike traditional NEAT (encoding final weights), DEX integrates lifecycle learning (Hebbian plasticity) to evolve "learning rules"—a meta-learning approach closer to biological evolution.
  • Emergent Intelligence: Starts with 20 random neurons; continuous evolution may lead to complex behaviors, offering a platform to study intelligence origins.
  • Decentralized AI: Runs on edge devices without cloud APIs/GPU clusters—showing potential for personal, decentralized AI.
6

章节 06

Limitations & Future Directions

Limitations & Future Directions Current limitations:

  • Early-stage project with simple tasks (char prediction/math) far from LLM capabilities.

Future directions:

  • More complex curriculum generation strategies.
  • Multi-modal perception input.
  • Group协作 evolution.
  • Interaction learning with real environments.
7

章节 07

Conclusion: A Paradigm-Defining Experiment

Conclusion: A Paradigm-Defining Experiment DEX-evolved-intelligence is an ambitious experimental project. While not the most practical AI tool today, it explores a fundamental question: Can intelligence self-construct from zero?

For developers and researchers interested in artificial life, evolutionary computing, and autonomous intelligence, DEX provides an inspiring open-source platform.