Replies: 1 comment 1 reply
-
You have to reduce the network patch_size=16, # This divides the input by 2**4
multipliers=[1, 2, 4, 4, 4, 4, 4], # (len=num_layers+1)
factors=[4, 4, 4, 2, 2, 2], # This divides the input the respective numbers (len=num_layers)
num_blocks=[2, 2, 2, 2, 2, 2], # (len=num_layers)
attentions=[False, False, False, True, True, True], # (len=num_layers) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For the tutorial on the repo page if I try to pass
I get the following error:
RuntimeError: Sizes of tensors must match except in dimension 1. Expected size 2 but got size 1 for tensor number 1 in the list.
Seems like for anything less than
2 ** 14
I get this error. Is there any way to pass a smaller input sequence to the diffusion model?Beta Was this translation helpful? Give feedback.
All reactions