Instructions to use Drexubery/UniView with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Drexubery/UniView with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Drexubery/UniView", dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
File size: 1,099 Bytes
7abadfb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | ---
license: apache-2.0
pipeline_tag: image-to-video
---
# UniWorld-View: Large-Baseline View Synthesis via Video Diffusion Models
UniWorld-View is a unified framework for controllable large-baseline novel view synthesis from monocular inputs (casual videos or single images) using video diffusion models.
- **Paper:** [UniWorld-View: Large-Baseline View Synthesis via Video Diffusion Models](https://huggingface.co/papers/2608.04701)
- **Project Page:** [https://zhouhyocean.github.io/uniworld-view/](https://zhouhyocean.github.io/uniworld-view/)
- **GitHub Repository:** [https://github.com/PKU-YuanGroup/UniWorld-View](https://github.com/PKU-YuanGroup/UniWorld-View)
## Citation
```bibtex
@misc{zhou2026uniworldviewlargebaselineviewsynthesis,
title={UniWorld-View: Large-Baseline View Synthesis via Video Diffusion Models},
author={Haiyang Zhou and Wangbo Yu and Chaoran Feng and Xunyu Zhou and Yonghong Tian and Li Yuan},
year={2026},
eprint={2608.04701},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2608.04701},
}
``` |