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
MONAI/monai/networks/nets/swin_unetr.py
Line 781 in 9eb0a8c
t = [ (0, 0, 0), (1, 0, 0), (0, 1, 0), (0, 0, 1), (1, 0, 1), (0, 1, 0), (0, 0, 1), (1, 1, 1), ] print(set(t)) # {(1, 0, 1), (0, 1, 0), (0, 0, 0), (1, 0, 0), (0, 0, 1), (1, 1, 1)}
As you can see two of these are the same. To be exact, (x3, x6) and (x2, x5) are the same.
The text was updated successfully, but these errors were encountered:
bug: Fix PatchMerging duplicate merging (#8285)
1c00ea2
Fixes # . ### Description A few sentences describing the changes proposed in this pull request. ### Types of changes - [x] Non-breaking change (fix or new feature that would not break existing functionality). Fixing issue #8284 In this format there are no duplicates: ``` t = [ (0, 0, 0), (1, 0, 0), (0, 1, 0), (0, 0, 1), (1, 0, 1), (1, 1, 0), (0, 1, 1), (1, 1, 1), ] print(set(t)) # {(1, 0, 1), (1, 1, 0), (0, 1, 0), (0, 0, 0), (1, 0, 0), (0, 0, 1), (1, 1, 1), (0, 1, 1)} ``` --------- Signed-off-by: pooya-mohammadi <[email protected]>
This issue has been addressed by #8285 but can be re-opened if not.
Sorry, something went wrong.
No branches or pull requests
MONAI/monai/networks/nets/swin_unetr.py
Line 781 in 9eb0a8c
As you can see two of these are the same. To be exact, (x3, x6) and (x2, x5) are the same.
The text was updated successfully, but these errors were encountered: