Views
No views yet
one_leg, lamp, and round_table state trajectories.9fd7d081| Metric | Mean |
|---|---|
| Objective | 0.125541 |
| One-step normalized MSE | 0.114518 |
| H=100 rollout normalized MSE | 0.200781 |
| One-step raw MSE | 0.041257 |
| H=100 rollout raw MSE | 0.078556 |
world_model_best.pt: inference/export checkpoint selected by validation rolloutworld_model_final.pt: final inference/export checkpointtraining/checkpoint_latest.pt: full optimizer, EMA, RNG, and sampler state for exact resumetraining/metrics.jsonl: training and validation historytraining/manifest.json: architecture, protocol, metrics, and SHA-256 checksumsconfigs/: exact source configuration filesmodel, model_config, schema, trajectory_metadata, environment_names, metrics, and step. Instantiate HeterogeneousDiffusionForcing from the source commit with model_config, then load model as its state dict. Use schema for canonical/native state conversion and slot masking.1import torch
2from huggingface_hub import hf_hub_download
3
4path = hf_hub_download(
5 repo_id="knightnemo/furniturebench-hdf-h100-three-task",
6 filename="world_model_best.pt",
7)
8payload = torch.load(path, map_location="cpu", weights_only=False)
9print(payload["model_config"])
10print(payload["schema"])