Invictus-AI/self-evolving-nn
02
๐งฌ Self-Evolving Neural Network โ 4524d43d
Evolved locally with neuroevolution (genetic architecture search), then uploaded from this machine.
Model
- Architecture: gated MLP โ top-3 features โ layer 1, remaining features join every layer after
- Layers:
192(swish), 96(selu), 32(swish), 192(linear), 256(relu), 64(sigmoid) - Params: 102,216
- Learning rate: 0.005 ยท Optimizer: rmsprop ยท Batch size: 16
- Top-3 feature gate: [4, 9, 16]
- Fitness: 331118.82
Evolution history
- Generations: 18
- Initial best fitness: 37948.7707
- Final best fitness: 240545.7623
- Improvement: +533.9%
Files
How to run
pip install -r requirements.txt
# Continue evolving from this state
python3 self_evolving_model.py --continue --generations 50
# Or launch the web GUI
python3 evo_gui.py --port 5000Scaling up (v2/v3 on GPU)
python3 self_evolving_model.py --continue --max-units 512 --max-layers 8 --train-epochs 20See evo_v2_colab.ipynb for a ready-to-run Google Colab notebook.
