Views
No views yet
Robo_Continual_Learning commit cc88389e9c06b2a8f3dca103718cce248210d468
(algorithms/world_model/heterogeneous_diffusion_forcing.py).| epoch | step | val MSE |
|---|---|---|
| 1 | 3,520 | 0.08918 |
| 2 | 7,040 | 0.00961 |
| 3 | 10,560 | 0.00740 |
| 4 | 14,080 | 0.00646 |
world_model_final.pt — EMA weights after exactly 4 exhaustive epochs
(the protocol artifact).world_model_best.pt — EMA weights at the best validation epoch
(epoch 4).metrics.jsonl — full training/validation log.source_commit.txt — exact training source revision.1import torch
2payload = torch.load("world_model_final.pt", map_location="cpu", weights_only=False)
3# payload["model"] holds the HeterogeneousDiffusionForcingModel state dict;
4# payload["model_config"] / payload["schema"] rebuild the exact model.