-
Notifications
You must be signed in to change notification settings - Fork 9.7k
[Fix] Support setting pad_val in batch collating #6837
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
Conversation
I will run an |
Codecov Report
@@ Coverage Diff @@
## dev-v2.20.0 #6837 +/- ##
===============================================
+ Coverage 62.02% 62.03% +0.01%
===============================================
Files 322 323 +1
Lines 25717 25745 +28
Branches 4356 4363 +7
===============================================
+ Hits 15951 15971 +20
- Misses 8918 8928 +10
+ Partials 848 846 -2
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
PanopticFPN: 40.1PQ. |
* Support setting pad_val during collating * Modify comments
* Support setting pad_val during collating * Modify comments
Now, the padding value is set to 0 by default, but in
gt_semantic_seg
it needs to be 255.So I modified the
DefaultFormatBundle
and addedpadding_value
in theDataContainer
.In batch collating, the
DataContainer
will fill the data with thepadding_value
.