We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def create_mask(window_size, displacement, upper_lower, left_right): mask = torch.zeros(window_size ** 2, window_size ** 2)
it is 49*49 in all tne swin network,why?
The text was updated successfully, but these errors were encountered:
dots[:, :, -nw_w:] += self.upper_lower_mask dots[:, :, nw_w - 1::nw_w] += self.left_right_mask
why ?56*56**96 the first 3 line to 53,54 55 lines?
Sorry, something went wrong.
No branches or pull requests
def create_mask(window_size, displacement, upper_lower, left_right):
mask = torch.zeros(window_size ** 2, window_size ** 2)
it is 49*49 in all tne swin network,why?
The text was updated successfully, but these errors were encountered: