-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docs for multiple object tracking (#46)
* mv mmcls to requirements * rm empty docs * re-organize modelzoo * det cfgs * tracktor * sort
- Loading branch information
Showing
13 changed files
with
81 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Compatibility with MMDetection | ||
|
||
You may want to train a detector for multiple object tracking or other applications. | ||
|
||
To be compatablie with MMDetection, you only need to add a line of `USE_MMDET=True` in the config and run it with the same manner in mmdetection. | ||
|
||
A base example can be found at [faster_rcnn_r50_fpn.py](../_base_/models/faster_rcnn_r50_fpn.py). | ||
|
||
Please NOTE that there are some differences between the base config in MMTracking and MMDetection. | ||
|
||
1. `detector` is only a submodule of the `model`. | ||
|
||
For example, the config of Faster R-CNN in MMDetection follows | ||
```python | ||
model = dict( | ||
type='FasterRCNN', | ||
... | ||
) | ||
``` | ||
|
||
But in MMTracking, the config follows | ||
```python | ||
model = dict( | ||
detector=dict( | ||
type='FasterRCNN', | ||
... | ||
) | ||
) | ||
``` | ||
|
||
2. `train_cfg` and `test_cfg` are merged into `model` / `detector`. | ||
|
||
In MMDetection, the configs follows | ||
```python | ||
model = dict() | ||
train_cfg = dict() | ||
test_cfg = dict() | ||
``` | ||
|
||
While in MMTracking, the config follows | ||
```python | ||
model = dict( | ||
detector=dict( | ||
train_cfg=dict(), | ||
test_cfg=dict(), | ||
... | ||
) | ||
) | ||
``` | ||
|
||
We are putting efforts to bridge these gaps across different codebases and try to give simpler configs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.