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
In your code file ViTAE-VSA\Image-Classification\vitaev2_vsa\NormalCell.py L130: self.pos = nn.Conv2d(dim, dim, window_size//2*2+1, 1, window_size//2, groups=dim, bias=True)
your window_sizeis 7,so the self.pos convolution kernel is 7 too, in most Positional Encoding extractor it is so large.
So is it possible that the positional encoding rather than VSA is working ?
The text was updated successfully, but these errors were encountered:
RebornForPower
changed the title
Is it possible the positional encoding not VSA works?
Is it possible the positional encoding rather than VSA works?
Sep 24, 2022
In your code file
ViTAE-VSA\Image-Classification\vitaev2_vsa\NormalCell.py
L130:self.pos = nn.Conv2d(dim, dim, window_size//2*2+1, 1, window_size//2, groups=dim, bias=True)
your
window_size
is 7,so theself.pos
convolution kernel is 7 too, in most Positional Encoding extractor it is so large.So is it possible that the positional encoding rather than VSA is working ?
The text was updated successfully, but these errors were encountered: