-
Notifications
You must be signed in to change notification settings - Fork 381
New issue
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
Remove AugPipe #1978
base: main
Are you sure you want to change the base?
Remove AugPipe #1978
Conversation
How close are we to also removing our custom AugmentationSequential wrapper? |
Pretty close actually. If |
a018184
to
3cde2de
Compare
@ashnair1 is this waiting on kornia 0.7.4 for something? |
Yeah #2147 needs to be merged before this and that needs kornia 0.7.4. |
Note: 0.7.4 will be released by the end of September |
2d281ce
to
d60d6fb
Compare
This is good to go forward now |
Drop in coverage is due to some lines in our |
No, the Have removed |
Scoping this back to just removing AugPipe. |
@adamjstewart Do we want to remove _ExtractPatches and I can make a PR in kornia for an ExtractTensorPatches augmentation? Pinging @edgarriba for awareness. |
@isaaccorley sounds good to me. Feel free to join our discourse to chat about it: https://discord.gg/Vf3QgRq2 @johnnv1 |
I would like to remove everything in |
Then yes sorry @ashnair1, let's remove AugmentationSequential and _ExtractPatches |
Or deprecate. It may take a while for upstream to make a new release. |
I think it might be better to keep the current scope of the PR as is i.e. removal of |
d4ab488
to
cdcf552
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One minor undo and then I think this is ready to merge!
Drop in coverage is for Can you add a couple tests? |
Alternatively, convert our AugmentationSequential to an alias of Kornia's so you don't need to add any tests. Or I can do that in my PR, but my PR can't be merged without this PR. |
Making our |
Ah right. So we have to figure out how to fix or replace |
The next version of kornia (
0.7.3
) will contain 2 fixes (kornia/kornia#2846, kornia/kornia#2856) that will allow us to drop AugPipe and have detection only depend on kornia'sAugmentationSequential
.