File size: 2,243 Bytes
720112f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | ---
language: en
license: apache-2.0
library_name: jax
tags:
- deep-reinforcement-learning
- neuroevolution
- tpu
- autonomous-agents
- artificial-life
datasets:
- synthetic-navigation-sim
metrics:
- foraging-efficiency
- pathfinding-success
---
# DeepRL (Standard Edition)
**DeepRL** is a robust, neuroevolutionary navigation agent. Unlike the "Micro" tier, the **Standard Edition** is designed for higher-resolution environments (64x64) and possesses enough neural capacity for active pathfinding and "hunting" behaviors.
## 📊 Model Profile
| Feature | Specification |
| :--- | :--- |
| **Model Architecture** | 3-Layer Deep CNN (64-Filter Width) |
| **Parameters** | ~45,000 (~180 KiB) |
| **Grid Resolution** | 64x64 Cellular Automata |
| **Input Channels** | 6 (Life, Food, Lava, 3x Signaling) |
| **Training Steps** | 48,000+ Generations |
| **Compute** | 16x Google Cloud TPU v5e (TRC Program) |
## 🧬 Key Behavioral Upgrades
The Standard Edition introduces **Metabolism Decay**. Unlike previous iterations that could "camp" on a single food source, this model must actively navigate to new food patches to maintain its mass.
- **Advanced Pathfinding:** Capable of detecting food sources up to 32 pixels away.
- **Lava kiting:** Uses a wider 64-filter "vision" to weave through complex obstacle patterns.
- **Mass Regulation:** Emergent behavior allows the agent to stabilize its size relative to available resources.
## 🚀 Deployment (Inference)
This model is optimized for modern consumer CPUs. It is designed to run smoothly at **30-60 FPS** on mid-tier hardware.
### Hardware Target: "Desktop Tier"
- **CPU:** Intel Core i5/i7 (8th Gen+) or AMD Ryzen 5/7
- **RAM:** 8GB - 16GB
- **Platform:** Works with any NumPy-compatible environment (Python 3.8+).
## 🛠️ Loading the DNA
The weights are stored as a ragged NumPy object array to preserve the specific convolutional shapes required by the JAX/Keras training pipeline.
```python
import numpy as np
# Load the Standard DNA payload (Apache 2.0 Licensed)
dna = np.load("DeepRL_Final_Gen48k.npy", allow_pickle=True)
# Weight Indices:
# [0, 1] - Conv Block 1 (64 Filters, 3x3)
# [2, 3] - Conv Block 2 (64 Filters, 1x1)
# [4, 5] - Decision Output (6 Channels, 1x1) |