Views
No views yet
1# Create conda environment
2conda create -n diffusers python=3.10 -y
3conda activate diffusers
4# Install PyTorch 2.7 with CUDA
5pip install torch==2.7.0 torchvision==0.22.0 torchaudio==2.7.0 --index-url https://download.pytorch.org/whl/cu128
6pip install diffusers decord einops accelerate transformers==4.57.0 opencv-python av1python diffusers_demo.py \
2 --video_path ./demo_data/video/source/0005e4ad9f49814db1d3f2296b911abf.mp4 \
3 --prompt "Remove the monkey." \
4 --save_path output.mp4 --model_path linyq/kiwi-edit-5b-instruct-only-diffusers1@misc{kiwiedit,
2 title={Kiwi-Edit: Versatile Video Editing via Instruction and Reference Guidance},
3 author={Yiqi Lin and Guoqiang Liang and Ziyun Zeng and Zechen Bai and Yanzhe Chen and Mike Zheng Shou},
4 year={2026},
5 eprint={2603.02175},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2603.02175},
9}