Views
No views yet
| Feature | Specification |
|---|---|
| Architecture | Deep ResNet (Residual Skip Connections) |
| Grid Resolution | 128x128 (16,384 spatial cells) |
| Parameters | ~185,000 (~740 KiB) |
| Agents | 10 Competing Seeds per Environment |
| Input Channels | 8 (Life, Food, Lava, 5x Signaling/Memory) |
| Training Steps | Overnight Evolution (Gen 50k+) |
| Compute | 16x Google Cloud TPU v5e (TRC Program) |
1import numpy as np
2
3# Load the Large-DeepRL DNA (Apache 2.0)
4dna = np.load("Large-DeepRL.npy", allow_pickle=True)
5
6# Architecture Structure:
7# - Entry Convolution (64 filters)
8# - ResNet Block 1 (Add + Activation)
9# - ResNet Block 2 (Add + Activation)
10# - 1x1 Strategy Head
11# - 1x1 Decision Output