Closed AIWanderer-X closed 4 months ago
https://github.com/lucidrains/magvit2-pytorch/blob/e085ec3c13cbef9c1048a7d11e0394b77dc8e6c8/magvit2_pytorch/magvit2_pytorch.py#L1236
I noticed dim_cond is added into FeedForward with the block under elif layer_type == 'attend_time':. Shouldn't it be added into the block under elif layer_type == 'cond_attend_space': where dim_cond is currently missing in FeeForward?
dim_cond
FeedForward
elif layer_type == 'attend_time':
elif layer_type == 'cond_attend_space':
FeeForward
@AIWanderer-X indeed! thank you again!
https://github.com/lucidrains/magvit2-pytorch/blob/e085ec3c13cbef9c1048a7d11e0394b77dc8e6c8/magvit2_pytorch/magvit2_pytorch.py#L1236
I noticed
dim_cond
is added intoFeedForward
with the block underelif layer_type == 'attend_time':
. Shouldn't it be added into the block underelif layer_type == 'cond_attend_space':
wheredim_cond
is currently missing inFeeForward
?