You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ERROR when run run_videomamba_pretraining.py.
File ".../VideoMamba/videomamba/video_sm/models/videomamba_pretrain.py", line 433, in forward
x_clip_vis = self.forward_features(x, mask)
File ".../VideoMamba/videomamba/video_sm/models/videomamba_pretrain.py", line 383, in forward_features
x = x + self.temporal_pos_embedding
RuntimeError: The size of tensor a (4) must match the size of tensor b (16) at non-singleton dimension 1
I printed the dimension of x and before the line of x = x + self.temporal_pos_embedding.
print(x.size())
torch.Size([3136, 4, 576])
print(self.temporal_pos_embedding.size())
torch.Size([1, 16, 576])
The text was updated successfully, but these errors were encountered:
ERROR when run run_videomamba_pretraining.py.
File ".../VideoMamba/videomamba/video_sm/models/videomamba_pretrain.py", line 433, in forward
x_clip_vis = self.forward_features(x, mask)
File ".../VideoMamba/videomamba/video_sm/models/videomamba_pretrain.py", line 383, in forward_features
x = x + self.temporal_pos_embedding
RuntimeError: The size of tensor a (4) must match the size of tensor b (16) at non-singleton dimension 1
I printed the dimension of x and before the line of x = x + self.temporal_pos_embedding.
print(x.size())
torch.Size([3136, 4, 576])
print(self.temporal_pos_embedding.size())
torch.Size([1, 16, 576])
The text was updated successfully, but these errors were encountered: