mirror of
https://github.com/Wan-Video/Wan2.1.git
synced 2025-12-19 13:42:05 +00:00
Compare commits
3 Commits
09327da6fa
...
9c498d5136
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9c498d5136 | ||
|
|
841fe5237b | ||
|
|
3677b69fb4 |
@ -46,6 +46,7 @@ If your work has improved **Wan2.1** and you would like more people to see it, p
|
|||||||
- [CFG-Zero](https://github.com/WeichenFan/CFG-Zero-star) enhances **Wan2.1** (covering both T2V and I2V models) from the perspective of CFG.
|
- [CFG-Zero](https://github.com/WeichenFan/CFG-Zero-star) enhances **Wan2.1** (covering both T2V and I2V models) from the perspective of CFG.
|
||||||
- [TeaCache](https://github.com/ali-vilab/TeaCache) now supports **Wan2.1** acceleration, capable of increasing speed by approximately 2x. Feel free to give it a try!
|
- [TeaCache](https://github.com/ali-vilab/TeaCache) now supports **Wan2.1** acceleration, capable of increasing speed by approximately 2x. Feel free to give it a try!
|
||||||
- [DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio) provides more support for **Wan2.1**, including video-to-video, FP8 quantization, VRAM optimization, LoRA training, and more. Please refer to [their examples](https://github.com/modelscope/DiffSynth-Studio/tree/main/examples/wanvideo).
|
- [DiffSynth-Studio](https://github.com/modelscope/DiffSynth-Studio) provides more support for **Wan2.1**, including video-to-video, FP8 quantization, VRAM optimization, LoRA training, and more. Please refer to [their examples](https://github.com/modelscope/DiffSynth-Studio/tree/main/examples/wanvideo).
|
||||||
|
- EasyCache (Training-Free Video Diffusion Acceleration via Runtime-Adaptive Caching): [EasyCache](https://github.com/H-EmbodVis/EasyCache) by [Dingkang Liang](https://github.com/dk-liang) and [Xin Zhou](https://github.com/LMD0311)
|
||||||
|
|
||||||
|
|
||||||
## 📑 Todo List
|
## 📑 Todo List
|
||||||
|
|||||||
@ -207,7 +207,7 @@ class WanI2V:
|
|||||||
generator=seed_g,
|
generator=seed_g,
|
||||||
device=self.device)
|
device=self.device)
|
||||||
|
|
||||||
msk = torch.ones(1, 81, lat_h, lat_w, device=self.device)
|
msk = torch.ones(1, F, lat_h, lat_w, device=self.device)
|
||||||
msk[:, 1:] = 0
|
msk[:, 1:] = 0
|
||||||
msk = torch.concat([
|
msk = torch.concat([
|
||||||
torch.repeat_interleave(msk[:, 0:1], repeats=4, dim=1), msk[:, 1:]
|
torch.repeat_interleave(msk[:, 0:1], repeats=4, dim=1), msk[:, 1:]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user