-
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
[Add] Support loading data from ceph for mot_challenge_dataset. #517
Conversation
Codecov Report
@@ Coverage Diff @@
## master #517 +/- ##
==========================================
- Coverage 73.17% 73.02% -0.15%
==========================================
Files 126 126
Lines 7370 7441 +71
Branches 1380 1395 +15
==========================================
+ Hits 5393 5434 +41
- Misses 1554 1572 +18
- Partials 423 435 +12
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
f.write(gt_content) | ||
f.close() | ||
# copy sequence file from ceph to local temporary directory | ||
seqinfo_path = osp.join(local_dir.name, name, 'seqinfo.ini') |
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 seqinfo.ini
may not exist.
Therefore, we need to copy seqinfo.ini
only when it exist.
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.
But this file maybe necessary, because it will be used again on line 442.
dataset = [trackeval.datasets.MotChallenge2DBox(dataset_config)]
If we don't throw errors here, we will still throw errors later.
add some blank
fix blank
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.
We can merge this pr after making sure that we support loading data from both ceph and local disk.
The test is successful on MOT16 and MOT17, using the faster rcnn model. |
No description provided.