Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion wan/modules/vae2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import torch.nn as nn
import torch.nn.functional as F
from einops import rearrange
from tqdm import tqdm

__all__ = [
"Wan2_2_VAE",
Expand Down Expand Up @@ -818,7 +819,7 @@ def decode(self, z, scale):
z = z / scale[1] + scale[0]
iter_ = z.shape[2]
x = self.conv2(z)
for i in range(iter_):
for i in tqdm(range(iter_)):
self._conv_idx = [0]
if i == 0:
out = self.decoder(
Expand Down