-
Notifications
You must be signed in to change notification settings - Fork 9.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* clean op * clean * update build.yml * fix setup * change ci mmcv version * change ci mmcv version * add install pre-build mmcv instructions * update mmcv url, move some unnit tests to mmcv * update ci mmcv * test * test * test * fix unit test * fix unit test * fix onnx script * update mmcv url * fix typo * fix some doc * Bump version * resolve comments * Fix version bug Co-authored-by: ZwwWayne <wayne.zw@outlook.com>
- Loading branch information
Showing
162 changed files
with
232 additions
and
9,894 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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../cascade_rcnn/cascade_mask_rcnn_r101_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCN', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../cascade_rcnn/cascade_mask_rcnn_r50_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCN', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
2 changes: 1 addition & 1 deletion
2
configs/dcn/cascade_mask_rcnn_x101_32x4d_fpn_dconv_c3-c5_1x_coco.py
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../cascade_rcnn/cascade_mask_rcnn_x101_32x4d_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCN', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../cascade_rcnn/cascade_rcnn_r101_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCN', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../cascade_rcnn/cascade_rcnn_r50_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCN', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../faster_rcnn/faster_rcnn_r101_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCN', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCN', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCNv2', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCNv2', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCNv2', deformable_groups=4, fallback_on_stride=False), | ||
dcn=dict(type='DCNv2', deform_groups=4, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../mask_rcnn/mask_rcnn_r101_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCN', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../mask_rcnn/mask_rcnn_r50_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCN', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_base_ = '../mask_rcnn/mask_rcnn_r50_fpn_1x_coco.py' | ||
model = dict( | ||
backbone=dict( | ||
dcn=dict(type='DCNv2', deformable_groups=1, fallback_on_stride=False), | ||
dcn=dict(type='DCNv2', deform_groups=1, fallback_on_stride=False), | ||
stage_with_dcn=(False, True, True, True))) |
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
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
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
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
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
Oops, something went wrong.