🤗 If you find WorldCrafter useful, please consider giving this repo a ⭐. Your support helps us share and improve the project. Thank you!
WorldCrafter enables consistent, camera-controlled scene exploration from an image or text prompt. Its camera-queryable implicit 3D-aware memory preserves scene information across viewpoints and over long horizons.
We provide WorldCrafter-Base and WorldCrafter-Fast, a distilled model for faster inference.
WorldCrafter.mp4
git clone https://github.com/TencentARC/WorldCrafter.git
cd WorldCrafterSet up the environment with uv or conda + pip. Both methods use Python 3.11 on Linux and require an NVIDIA GPU with a compatible driver.
A: uv (recommended)
Install uv, then run from the repository root:
# Ubuntu / Debian
sudo apt-get update
sudo apt-get install -y ffmpeg
uv sync --project uvenv --frozen --extra demo
source uvenv/.venv/bin/activateFor other Linux distributions, install FFmpeg using your system package manager.
This installs the locked PyTorch 2.10 / CUDA 12.8 environment and its acceleration dependencies.
B: conda + pip
Create an environment and install PyTorch for your machine. For CUDA 12.8:
conda create -n worldcrafter -c conda-forge python=3.11 pip ffmpeg -y
conda activate worldcrafter
python -m pip install torch==2.10.0 torchvision==0.25.0 \
--index-url https://download.pytorch.org/whl/cu128
python -m pip install -e ".[demo,xformers]" flash-attn-3==3.0.0 \
--extra-index-url https://download.pytorch.org/whl/cu128Choose the appropriate CUDA build from the PyTorch installation commands.
| Models | Download Link | Notes |
|---|---|---|
| WorldCrafter-Base | 🤗 Hugging Face | Base model |
| WorldCrafter-Fast | 🤗 Hugging Face | Distilled high- and low-noise models for faster inference |
Download weights with the Hugging Face CLI:
hf download TencentARC/WorldCrafter-Fast --local-dir weights/WorldCrafter-Fast
# Optional: also download Base to run the base model
hf download TencentARC/WorldCrafter-Base --local-dir weights/WorldCrafter-BaseBase model uses shared components from WorldCrafter-Fast, so keep both folders when using base model.
See the inference guide for camera controls, prompt writing, examples and custom inputs.
Run with either model:
# Base
python inference.py --model-type base --mode i2v \
--image-path test/I2V/00_cat_vac/image.png \
--prompt-path test/I2V/00_cat_vac/prompt.txt \
--camera-path test/I2V/00_cat_vac/camera.npy \
--output-path output/base.mp4
# Fast
python inference.py --model-type fast --mode i2v \
--image-path test/I2V/00_cat_vac/image.png \
--prompt-path test/I2V/00_cat_vac/prompt.txt \
--camera-path test/I2V/00_cat_vac/camera.npy \
--output-path output/fast.mp4# Base
python inference.py --model-type base --mode t2v \
--prompt-path test/T2V/00_red_balloon/prompt.txt \
--camera-path test/T2V/00_red_balloon/camera.npy \
--output-path output/t2v.mp4
# Fast
python inference.py --model-type fast --mode t2v \
--prompt-path test/T2V/00_red_balloon/prompt.txt \
--camera-path test/T2V/00_red_balloon/camera.npy \
--output-path output/fast_t2v.mp4Compilation is off by default. Add --enable-compile to enable it; the first run takes longer to start.
The interactive demo is currently being debugged.
Explore a scene with keyboard camera controls from your activated environment:
python -m demo --model-path weights/WorldCrafter-FastOpen http://localhost:8080. The single-GPU demo uses Fast image-to-video with
compilation enabled. See demo/README.md for controls and deployment.
If you find WorldCrafter useful in your research, please cite:
@misc{yu2026worldcrafter,
title={WorldCrafter: Consistent Video World Model with Implicit {3D}-aware Memory},
author={Wangbo Yu and Kunhao Liu and Wenbo Hu and Shenghai Yuan and Chaoran Feng and Haiyang Zhou and Yukun Huang and Yiran Wang and Wang Zhao and Yingmin Luo and Ying Shan},
year={2026},
eprint={2609.24984},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2609.24984}
}See LICENSE.txt for the terms of use and third-party attributions.
Helios, LagerNVS, DreamX-World, EVOKE, HY-WorldPlay, Lyra 2.0, Echo-WM, LingBot-World 2, Matrix-Game 3.5, SANA-WM.