Skip to content

Commit f537397

Browse files
authored
Merge branch 'open-mmlab:master' into custom/face_occlusion
2 parents 1fc898c + 76a5138 commit f537397

12 files changed

+33
-23
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ MMSegmentation is released under the Apache 2.0 license, while some specific fea
226226
- [MMClassification](https://github.com/open-mmlab/mmclassification): OpenMMLab image classification toolbox and benchmark.
227227
- [MMDetection](https://github.com/open-mmlab/mmdetection): OpenMMLab detection toolbox and benchmark.
228228
- [MMDetection3D](https://github.com/open-mmlab/mmdetection3d): OpenMMLab's next-generation platform for general 3D object detection.
229+
- [MMYOLO](https://github.com/open-mmlab/mmyolo): OpenMMLab YOLO series toolbox and benchmark.
229230
- [MMRotate](https://github.com/open-mmlab/mmrotate): OpenMMLab rotated object detection toolbox and benchmark.
230231
- [MMSegmentation](https://github.com/open-mmlab/mmsegmentation): OpenMMLab semantic segmentation toolbox and benchmark.
231232
- [MMOCR](https://github.com/open-mmlab/mmocr): OpenMMLab text detection, recognition, and understanding toolbox.

README_zh-CN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ MMSegmentation 是一个由来自不同高校和企业的研发人员共同参
220220
- [MMClassification](https://github.com/open-mmlab/mmclassification): OpenMMLab 图像分类工具箱
221221
- [MMDetection](https://github.com/open-mmlab/mmdetection): OpenMMLab 目标检测工具箱
222222
- [MMDetection3D](https://github.com/open-mmlab/mmdetection3d): OpenMMLab 新一代通用 3D 目标检测平台
223+
- [MMYOLO](https://github.com/open-mmlab/mmyolo): OpenMMLab YOLO 系列工具箱和基准测试
223224
- [MMRotate](https://github.com/open-mmlab/mmrotate): OpenMMLab 旋转框检测工具箱与测试基准
224225
- [MMSegmentation](https://github.com/open-mmlab/mmsegmentation): OpenMMLab 语义分割工具箱
225226
- [MMOCR](https://github.com/open-mmlab/mmocr): OpenMMLab 全流程文字检测识别理解工具包

configs/mobilenet_v2/deeplabv3_m-v2-d8_512x1024_80k_cityscapes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
widen_factor=1.,
88
strides=(1, 2, 2, 1, 1, 1, 1),
99
dilations=(1, 1, 1, 2, 2, 4, 4),
10-
out_indices=(1, 2, 4, 6)),
10+
out_indices=(1, 2, 4, 6),
11+
norm_cfg=dict(type='SyncBN', requires_grad=True)),
1112
decode_head=dict(in_channels=320),
1213
auxiliary_head=dict(in_channels=96))

configs/mobilenet_v2/deeplabv3_m-v2-d8_512x512_160k_ade20k.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
widen_factor=1.,
88
strides=(1, 2, 2, 1, 1, 1, 1),
99
dilations=(1, 1, 1, 2, 2, 4, 4),
10-
out_indices=(1, 2, 4, 6)),
10+
out_indices=(1, 2, 4, 6),
11+
norm_cfg=dict(type='SyncBN', requires_grad=True)),
1112
decode_head=dict(in_channels=320),
1213
auxiliary_head=dict(in_channels=96))

configs/mobilenet_v2/deeplabv3plus_m-v2-d8_512x1024_80k_cityscapes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
widen_factor=1.,
88
strides=(1, 2, 2, 1, 1, 1, 1),
99
dilations=(1, 1, 1, 2, 2, 4, 4),
10-
out_indices=(1, 2, 4, 6)),
10+
out_indices=(1, 2, 4, 6),
11+
norm_cfg=dict(type='SyncBN', requires_grad=True)),
1112
decode_head=dict(in_channels=320, c1_in_channels=24),
1213
auxiliary_head=dict(in_channels=96))

configs/mobilenet_v2/deeplabv3plus_m-v2-d8_512x512_160k_ade20k.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
widen_factor=1.,
88
strides=(1, 2, 2, 1, 1, 1, 1),
99
dilations=(1, 1, 1, 2, 2, 4, 4),
10-
out_indices=(1, 2, 4, 6)),
10+
out_indices=(1, 2, 4, 6),
11+
norm_cfg=dict(type='SyncBN', requires_grad=True)),
1112
decode_head=dict(in_channels=320, c1_in_channels=24),
1213
auxiliary_head=dict(in_channels=96))

configs/mobilenet_v2/fcn_m-v2-d8_512x1024_80k_cityscapes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
widen_factor=1.,
88
strides=(1, 2, 2, 1, 1, 1, 1),
99
dilations=(1, 1, 1, 2, 2, 4, 4),
10-
out_indices=(1, 2, 4, 6)),
10+
out_indices=(1, 2, 4, 6),
11+
norm_cfg=dict(type='SyncBN', requires_grad=True)),
1112
decode_head=dict(in_channels=320),
1213
auxiliary_head=dict(in_channels=96))

configs/mobilenet_v2/fcn_m-v2-d8_512x512_160k_ade20k.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
widen_factor=1.,
88
strides=(1, 2, 2, 1, 1, 1, 1),
99
dilations=(1, 1, 1, 2, 2, 4, 4),
10-
out_indices=(1, 2, 4, 6)),
10+
out_indices=(1, 2, 4, 6),
11+
norm_cfg=dict(type='SyncBN', requires_grad=True)),
1112
decode_head=dict(in_channels=320),
1213
auxiliary_head=dict(in_channels=96))

configs/mobilenet_v2/pspnet_m-v2-d8_512x1024_80k_cityscapes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
widen_factor=1.,
88
strides=(1, 2, 2, 1, 1, 1, 1),
99
dilations=(1, 1, 1, 2, 2, 4, 4),
10-
out_indices=(1, 2, 4, 6)),
10+
out_indices=(1, 2, 4, 6),
11+
norm_cfg=dict(type='SyncBN', requires_grad=True)),
1112
decode_head=dict(in_channels=320),
1213
auxiliary_head=dict(in_channels=96))

configs/mobilenet_v2/pspnet_m-v2-d8_512x512_160k_ade20k.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
widen_factor=1.,
88
strides=(1, 2, 2, 1, 1, 1, 1),
99
dilations=(1, 1, 1, 2, 2, 4, 4),
10-
out_indices=(1, 2, 4, 6)),
10+
out_indices=(1, 2, 4, 6),
11+
norm_cfg=dict(type='SyncBN', requires_grad=True)),
1112
decode_head=dict(in_channels=320),
1213
auxiliary_head=dict(in_channels=96))

0 commit comments

Comments
 (0)