Describe the bug
In decoding/model/autoencoders/unets/unet_1d_blocks.py:212-222
defforward(self, hidden_states: torch.Tensor, temb: torch.Tensor) ->torch.Tensor:
hidden_states=self.resnets[0](hidden_states, temb)
forresnetinself.resnets[1:]:
hidden_states=resnet(hidden_states, temb)
ifself.upsample:
hidden_states=self.upsample(hidden_states)
ifself.downsample:
self.downsample=self.downsample(hidden_states)
returnhidden_states
Looks like it should be
hidden_states=self.downsample(hidden_states)
Reproduction
N/A
Logs
No response
System Info
N/A
Who can help?
No response
Describe the bug
In decoding/model/autoencoders/unets/unet_1d_blocks.py:212-222
Looks like it should be
Reproduction
N/A
Logs
No response
System Info
N/A
Who can help?
No response