README.md

June 2, 2026 · View on GitHub

StressDream icon

StressDream: Steering Video World Models
for Robust Policy Evaluation and Improvement

Junwon Seo, Sushant Veer, Ran Tian, Wenhao Ding, Apoorva Sharma, Karen Leung, Edward Schmerling, Marco Pavone, Andrea Bajcsy

Paper Project Page MIT License


StressDream overview

StressDream is an inference-time method that optimizes diffusion noise to steer video world models toward plausible, high-impact outcomes - enabling robust evaluation and improvement of robotic policies.


Modules

ModuleDomainWorld ModelReward
dubins/Synthetic Dubins carImage-based 3D Dubins CarSafety score (failure set)
vista/DrivingVistaX-CLIP (+ optional Qwen2.5-VL)
ctrl_world/Robot manipulation (DROID)Ctrl-WorldQwen3-VL

Run StressDream

All scripts are run from the StressDream/ repo root. Each module has its own environment and detailed README.

🚗 Dubins Car

Start with dubins/demo.ipynb

See dubins/README.md for details.

conda create -n stressdream-dubins python=3.10 && conda activate stressdream-dubins
pip install -r dubins/requirements.txt
jupyter notebook dubins/demo.ipynb

CLI steering is also available:

python dubins/run_steering.py

🛣️ Vista Driving

Start with vista/demo.ipynb

See vista/README.md for details.

conda env create -f vista/environment.yml
conda activate stressdream-vista
jupyter notebook vista/demo.ipynb

CLI steering is also available with python vista/run_steering.py.

🦾 Ctrl-World Manipulation

See ctrl_world/README.md for details.

conda env create -f ctrl_world/environment.yml
conda activate stressdream-ctrlworld
python ctrl_world/run_steering.py \
    --hdf5_path ctrl_world/example_data/traj_0001.hdf5

❤️ Acknowledgements

StressDream builds on two open-source video world models:

⭐ Citation

If StressDream helps your research, please consider citing:

@article{seo2026stressdream,
  title={StressDream: Steering Video World Models for Robust Policy Evaluation and Improvement},
  author={Seo, Junwon and Veer, Sushant and Tian, Ran and Ding, Wenhao and Sharma, Apoorva and Leung, Karen and Schmerling, Edward and Pavone, Marco and Bajcsy, Andrea},
  journal={arXiv preprint arXiv:2606.00267},
  year={2026}
}