Views
No views yet
| File | Description | Size |
|---|---|---|
latest.pt | Full DreamerV3 checkpoint (PyTorch) | 136 MB |
exported/dreamer_weights.bin | Extracted weight matrices for numpy RSSM | 23 MB |
exported/dreamer_manifest.json | Weight name mapping | 4 KB |
battery.npz | Pre-collected hidden states from 15 episodes | 25 MB |
metrics.jsonl | Training metrics log | 79 KB |
1git clone https://github.com/major-scale/anim-binary-counting
2cd anim-binary-counting
3
4# Download exported weights
5mkdir -p checkpoints/exported
6wget https://huggingface.co/major-scale/anim-binary-counting/resolve/main/exported/dreamer_weights.bin -O checkpoints/exported/dreamer_weights.bin
7wget https://huggingface.co/major-scale/anim-binary-counting/resolve/main/exported/dreamer_manifest.json -O checkpoints/exported/dreamer_manifest.json
8wget https://huggingface.co/major-scale/anim-binary-counting/resolve/main/battery.npz -O data/battery.npz
9
10# Run analysis
11pip install -r code/requirements.txt
12python code/analysis/verify_dual_mode.pycode/training/ in the GitHub repo for configs and launcher.