-
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
[Feature] Support TAO dataset of MOT field #415
Conversation
Codecov Report
@@ Coverage Diff @@
## master #415 +/- ##
==========================================
+ Coverage 71.31% 71.68% +0.36%
==========================================
Files 117 118 +1
Lines 6534 6697 +163
Branches 1250 1285 +35
==========================================
+ Hits 4660 4801 +141
- Misses 1490 1499 +9
- Partials 384 397 +13
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
docs/en/dataset.md
Outdated
|
||
- The `annotations` under `lvis` contains the official annotations of lvis-v0.5 which can be downloaded according to [here](https://github.com/lvis-dataset/lvis-api/issues/23#issuecomment-894963957)。 | ||
|
||
- The synset mapping file `coco_to_lvis_synset.json` used in `lvis` training can be found [here](https://github.com/lvis-dataset/lvis-api/issues/23#issuecomment-894963957)。 |
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.
wrong link.
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.
And merge line 38 with line 40
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 synset mapping file `coco_to_lvis_synset.json` used in `lvis` training can be found [here](https://github.com/lvis-dataset/lvis-api/issues/23#issuecomment-894963957)。 | |
- The synset mapping file `coco_to_lvis_synset.json` used in `./tools/convert_datasets/tao/merge_coco_with_lvis.py` script can be found [here](xxx)。 |
docs/en/dataset.md
Outdated
@@ -197,6 +234,14 @@ python ./tools/convert_datasets/mot/mot2reid.py -i ./data/MOT17/ -o ./data/MOT17 | |||
# CrowdHuman | |||
python ./tools/convert_datasets/mot/crowdhuman2coco.py -i ./data/crowdhuman -o ./data/crowdhuman/annotations | |||
|
|||
# LVIS | |||
# Merge annotations from LVIS and COCO for training QDTrack | |||
python ./tools/convert_datasets/tao/merge_coco_with_lvis.py --lvis ./data/lvis/annotations/lvis_v0.5_train.json --coco ./data/coco/annotations/instances_train2017.json --mapping ./data/coco_to_lvis_synset.json --output-json ./data/lvis/annotations/lvisv0.5+coco_train.json |
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.
put ./data/coco_to_lvis_synset.json
into ./data/lvis/annotations/coco_to_lvis_synset.json
No description provided.