-
Notifications
You must be signed in to change notification settings - Fork 6.2k
[wan2.2] add 5b i2v #12006
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[wan2.2] add 5b i2v #12006
Conversation
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
Thank you @yiyixuxu . 1 query, is this fixed value or need to be reversed as per input image,
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Co-authored-by: Aryan <aryan@huggingface.co>
@nitinmukesh |
进度跑满后,最后关头占用显存直接飙升到30G左右,导致非常慢,我是3090显卡 |
Hey, With Wan2.1 we was able to pass just a RGB PIl image. With 2.2 i get def _conv_forward(self, input: Tensor, weight: Tensor, bias: Optional[Tensor]):
if self.padding_mode != "zeros":
return F.conv3d(
F.pad(
input, self._reversed_padding_repeated_twice, mode=self.padding_mode
),
weight,
bias,
self.stride,
_triple(0),
self.dilation,
self.groups,
)
> return F.conv3d(
input, weight, bias, self.stride, self.padding, self.dilation, self.groups
)
E RuntimeError: Given groups=1, weight of size [160, 12, 3, 3, 3], expected input[1, 3, 3, 258, 258] to have 12 channels, but got 3 channels instead
/opt/conda/lib/python3.11/site-packages/torch/nn/modules/conv.py:720: RuntimeError Cheers, |
hi @JoeGaffney
|
Hey @yiyixuxu it was resolved in the other ticket it was vae.enable_tiling() |
Which ticket fixed enable_tiling. I'm getting OOM even after installing diffusers from source. |
* add 5b ti2v * remove a copy * Update src/diffusers/pipelines/wan/pipeline_wan_i2v.py Co-authored-by: Aryan <aryan@huggingface.co> * Apply suggestions from code review --------- Co-authored-by: Aryan <aryan@huggingface.co>
Uh oh!
There was an error while loading. Please reload this page.