Implementation of Masked-HWM (Masked Humanoid World Model) with shared parameters, following the specifications from the Humanoid World Models paper.
Output from the Masked model:
Note: The model size is much smaller than the paper implementation due to limited GPU access.
Pre-trained model checkpoints are available on Hugging Face: sangramrout/Humanoid_WM
- Checkpoint:
checkpoint-60000 - Location:
Masked HWM/checkpoint-60000/ - Download: Available on Hugging Face repository
- Checkpoint:
checkpoint-24000 - Location:
checkpoints_flow_hwm_medium/checkpoint-24000/ - Download: Available on Hugging Face repository
You can download the checkpoints using the Hugging Face Hub:
from huggingface_hub import snapshot_download
# Download Masked HWM checkpoint
masked_checkpoint = snapshot_download(
repo_id="sangramrout/Humanoid_WM",
allow_patterns="Masked HWM/checkpoint-60000/*"
)
# Download Flow HWM checkpoint
flow_checkpoint = snapshot_download(
repo_id="sangramrout/Humanoid_WM",
allow_patterns="checkpoints_flow_hwm_medium/checkpoint-24000/*"
)Or using the command line:
# Install huggingface_hub if needed
pip install huggingface_hub
# Download using CLI
huggingface-cli download sangramrout/Humanoid_WM --local-dir ./checkpoints






