-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
At this line, the reshape appears to be called incorrectly. I believe it should either be hidden_states.reshape(*) or torch.reshape(hidden_states, *)
It appears like this part of the model is not used in the text2world pipeline so it doesn't raise an issue, but trying to run this line in local testing results in an error.
Reproduction
>>> hidden_states = torch.reshape(batch_size, num_channels, num_frames // p, p, height // p, p, width // p, p)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: reshape() takes 2 positional arguments but 8 were given
Logs
System Info
Python 3.9
Who can help?
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working