-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Prototype references #7220
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
Prototype references #7220
Conversation
…://github.com/pytorch/vision into prototype-references/classification
…com/pytorch/vision into prototype-references/classification
…s_latest_at_least_for_now
…s_latest_at_least_for_now
…s_latest_at_least_for_now
…s_latest_at_least_for_now
…s_latest_at_least_for_now
…s_latest_at_least_for_now
torch core version: ClassificationMobileNet V3
V1 on main, V2 on 170ed2a
DetectionSSD liteEDIT: see new results below #7220 (comment)
V1 on main, V2 on 035ccd7
Mask R-CNN
V1 on main efd6bc0, V2 on b5e3b91
Keypoint RCNNEDIT: well this isn't super relevant, keypoints aren't supported / transformed by V2.
V1 on main efd6bc0, V2 on c00a181
SegmentationLRASPP
V1 on main efd6bc0 V2 on 5147d8b
|
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/vision/7220
Note: Links to docs will display an error until the docs builds have been completed. ❌ 4 FailuresAs of commit e4de74b: NEW FAILURES - The following jobs have failed:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
New results with @pmeier after investigations from #7494 and improvements to V2 dataset warpper in #7488. The detection V2 training references are much faster than V1 (~30%). As described in #7494 those improvements mostly don't come from the transforms, but rather from the V2 dataset wrapper which a) is much faster than the one we have in the current references and b) doesn't return masks by default, so the V2 references do not do the extra unnecessary work of transforming masks (while the V1 do). Addressing b) for the current references is possible, and is tracked in #7489. It would lead to a more accurate speed-wise comparison of transforms V1 vs V2. SSD lite
V1 PIL comes from
|
Same as #6433 but with latest changes / design decisions.
I encountered quite a few issues / bug (see TODOs). We will need some solid integration tests of different transformation pipelines before we migrate.