-
Notifications
You must be signed in to change notification settings - Fork 597
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
[Enhancement] Refactor TrackingNetDataset, SOTCocoDataset and SOTImageNetVIDDataset based on BaseSOTDataset #402
Conversation
Codecov Report
@@ Coverage Diff @@
## master #402 +/- ##
==========================================
+ Coverage 70.25% 70.48% +0.23%
==========================================
Files 114 116 +2
Lines 5981 6113 +132
Branches 1157 1181 +24
==========================================
+ Hits 4202 4309 +107
- Misses 1428 1448 +20
- Partials 351 356 +5
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
num_chunks (int, optional): the number of chunks. Some methods may | ||
only use part of the dataset. Default to all chunks, 12. | ||
""" | ||
self.num_chunks = num_chunks |
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.
The num_chunks
should not be a int
, since the user may want to specify the index of chunks. It should be a list with optional values in [1,2,3,4,'all']
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.
Please test the performance of SiameseRPN++ on TrackingNet after completing the reviewing comments. Then, we can merge this PR.
Refactor TrackingNetDataset, SOTCocoDataset and SOTImageNetVIDDataset based on BaseSOTDataset.
Please refer to #393 for more details.