Views
No views yet
| File | Description |
|---|---|
model.pt | DMD-distilled generator weights for the EndlessWorld causal Wan model (step 1000 of the self_forcing_dmd_separate SOTA run). |

CrossAttentionFusion + To3D modules ingest
3D Gaussian features produced by AnySplat and fuse them with the text
embedding, giving the generator a persistent geometric memory of the world
rendered so far.1git clone https://github.com/BWGZK-keke/EndlessWorld
2cd EndlessWorld
3pip install -r requirements.txt
4
5# Download this checkpoint
6huggingface-cli download BWGZK/EndlessWorld model.pt --local-dir checkpoints/
7
8# Update configs/self_forcing_dmd.yaml -> generator_ckpt: checkpoints/model.pt
9bash test.sh1import torch
2from huggingface_hub import hf_hub_download
3
4ckpt = hf_hub_download(repo_id="BWGZK/EndlessWorld", filename="model.pt")
5state_dict = torch.load(ckpt, map_location="cpu")train.py
entry point with configs/self_forcing_dmd.yaml.1@article{zhang2025endlessworld,
2 title = {Endless World: Real-Time 3D-Aware Long Video Generation},
3 author = {Zhang, Ke and others},
4 journal = {arXiv preprint arXiv:2512.12430},
5 year = {2025}
6}