Skip to content

Commit 838b647

Browse files
authored
Add some publish information of implemented models (open-mmlab#508)
* Add some publish information * Fix some readme omission.
1 parent 89f8a6a commit 838b647

File tree

5 files changed

+75
-72
lines changed

5 files changed

+75
-72
lines changed

README.md

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -57,37 +57,38 @@ Results and models are available in the [model zoo](docs/model_zoo.md).
5757

5858
Supported backbones:
5959

60-
- [x] ResNet
61-
- [x] ResNeXt
62-
- [x] [HRNet](configs/hrnet/README.md)
63-
- [x] [ResNeSt](configs/resnest/README.md)
64-
- [x] [MobileNetV2](configs/mobilenet_v2/README.md)
65-
- [x] [MobileNetV3](configs/mobilenet_v3/README.md)
60+
- [x] ResNet (CVPR'2016)
61+
- [x] ResNeXt (CVPR'2017)
62+
- [x] [HRNet (CVPR'2019)](configs/hrnet/README.md)
63+
- [x] [ResNeSt (ArXiv'2020)](configs/resnest/README.md)
64+
- [x] [MobileNetV2 (CVPR'2018)](configs/mobilenet_v2/README.md)
65+
- [x] [MobileNetV3 (ICCV'2019)](configs/mobilenet_v3/README.md)
6666

6767
Supported methods:
6868

69-
- [x] [FCN](configs/fcn)
70-
- [x] [PSPNet](configs/pspnet)
71-
- [x] [DeepLabV3](configs/deeplabv3)
72-
- [x] [PSANet](configs/psanet)
73-
- [x] [DeepLabV3+](configs/deeplabv3plus)
74-
- [x] [UPerNet](configs/upernet)
75-
- [x] [NonLocal Net](configs/nonlocal_net)
76-
- [x] [EncNet](configs/encnet)
77-
- [x] [CCNet](configs/ccnet)
78-
- [x] [DANet](configs/danet)
79-
- [x] [APCNet](configs/apcnet)
80-
- [x] [GCNet](configs/gcnet)
81-
- [x] [DMNet](configs/dmnet)
82-
- [x] [ANN](configs/ann)
83-
- [x] [OCRNet](configs/ocrnet)
84-
- [x] [Fast-SCNN](configs/fastscnn)
85-
- [x] [Semantic FPN](configs/sem_fpn)
86-
- [x] [PointRend](configs/point_rend)
87-
- [x] [EMANet](configs/emanet)
88-
- [x] [DNLNet](configs/dnlnet)
89-
- [x] [CGNet](configs/cgnet)
90-
- [x] [Mixed Precision (FP16) Training](configs/fp16/README.md)
69+
- [x] [FCN (CVPR'2015/TPAMI'2017)](configs/fcn)
70+
- [x] [UNet (MICCAI'2016/Nat. Methods'2019)](configs/unet)
71+
- [x] [PSPNet (CVPR'2017)](configs/pspnet)
72+
- [x] [DeepLabV3 (CVPR'2017)](configs/deeplabv3)
73+
- [x] [Mixed Precision (FP16) Training (ArXiv'2017)](configs/fp16/README.md)
74+
- [x] [PSANet (ECCV'2018)](configs/psanet)
75+
- [x] [DeepLabV3+ (CVPR'2018)](configs/deeplabv3plus)
76+
- [x] [UPerNet (ECCV'2018)](configs/upernet)
77+
- [x] [NonLocal Net (CVPR'2018)](configs/nonlocal_net)
78+
- [x] [EncNet (CVPR'2018)](configs/encnet)
79+
- [x] [Semantic FPN (CVPR'2019)](configs/sem_fpn)
80+
- [x] [DANet (CVPR'2019)](configs/danet)
81+
- [x] [APCNet (CVPR'2019)](configs/apcnet)
82+
- [x] [EMANet (ICCV'2019)](configs/emanet)
83+
- [x] [CCNet (ICCV'2019)](configs/ccnet)
84+
- [x] [DMNet (ICCV'2019)](configs/dmnet)
85+
- [x] [ANN (ICCV'2019)](configs/ann)
86+
- [x] [GCNet (ICCVW'2019/TPAMI'2020)](configs/gcnet)
87+
- [x] [Fast-SCNN (ArXiv'2019)](configs/fastscnn)
88+
- [x] [OCRNet (ECCV'2020)](configs/ocrnet)
89+
- [x] [DNLNet (ECCV'2020)](configs/dnlnet)
90+
- [x] [PointRend (CVPR'2020)](configs/point_rend)
91+
- [x] [CGNet (TIP'2020)](configs/cgnet)
9192

9293
## Installation
9394

README_zh-CN.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -56,37 +56,37 @@ MMSegmentation 是一个基于 PyTorch 的语义分割开源工具箱。它是 O
5656

5757
已支持的骨干网络:
5858

59-
- [x] ResNet
60-
- [x] ResNeXt
61-
- [x] [HRNet](configs/hrnet/README.md)
62-
- [x] [ResNeSt](configs/resnest/README.md)
63-
- [x] [MobileNetV2](configs/mobilenet_v2/README.md)
64-
- [x] [MobileNetV3](configs/mobilenet_v3/README.md)
59+
- [x] ResNet (CVPR'2016)
60+
- [x] ResNeXt (CVPR'2017)
61+
- [x] [HRNet (CVPR'2019)](configs/hrnet/README.md)
62+
- [x] [ResNeSt (ArXiv'2020)](configs/resnest/README.md)
63+
- [x] [MobileNetV2 (CVPR'2018)](configs/mobilenet_v2/README.md)
64+
- [x] [MobileNetV3 (ICCV'2019)](configs/mobilenet_v3/README.md)
6565

6666
已支持的算法:
6767

68-
- [x] [FCN](configs/fcn)
69-
- [x] [PSPNet](configs/pspnet)
70-
- [x] [DeepLabV3](configs/deeplabv3)
71-
- [x] [PSANet](configs/psanet)
72-
- [x] [DeepLabV3+](configs/deeplabv3plus)
73-
- [x] [UPerNet](configs/upernet)
74-
- [x] [NonLocal Net](configs/nonlocal_net)
75-
- [x] [EncNet](configs/encnet)
76-
- [x] [CCNet](configs/ccnet)
77-
- [x] [DANet](configs/danet)
78-
- [x] [APCNet](configs/apcnet)
79-
- [x] [GCNet](configs/gcnet)
80-
- [x] [DMNet](configs/dmnet)
81-
- [x] [ANN](configs/ann)
82-
- [x] [OCRNet](configs/ocrnet)
83-
- [x] [Fast-SCNN](configs/fastscnn)
84-
- [x] [Semantic FPN](configs/sem_fpn)
85-
- [x] [PointRend](configs/point_rend)
86-
- [x] [EMANet](configs/emanet)
87-
- [x] [DNLNet](configs/dnlnet)
88-
- [x] [CGNet](configs/cgnet)
89-
- [x] [Mixed Precision (FP16) Training](configs/fp16/README.md)
68+
- [x] [FCN (CVPR'2015/TPAMI'2017)](configs/fcn)
69+
- [x] [PSPNet (CVPR'2017)](configs/pspnet)
70+
- [x] [DeepLabV3 (CVPR'2017)](configs/deeplabv3)
71+
- [x] [Mixed Precision (FP16) Training (ArXiv'2017)](configs/fp16/README.md)
72+
- [x] [PSANet (ECCV'2018)](configs/psanet)
73+
- [x] [DeepLabV3+ (CVPR'2018)](configs/deeplabv3plus)
74+
- [x] [UPerNet (ECCV'2018)](configs/upernet)
75+
- [x] [NonLocal Net (CVPR'2018)](configs/nonlocal_net)
76+
- [x] [EncNet (CVPR'2018)](configs/encnet)
77+
- [x] [Semantic FPN (CVPR'2019)](configs/sem_fpn)
78+
- [x] [DANet (CVPR'2019)](configs/danet)
79+
- [x] [APCNet (CVPR'2019)](configs/apcnet)
80+
- [x] [EMANet (ICCV'2019)](configs/emanet)
81+
- [x] [CCNet (ICCV'2019)](configs/ccnet)
82+
- [x] [DMNet (ICCV'2019)](configs/dmnet)
83+
- [x] [ANN (ICCV'2019)](configs/ann)
84+
- [x] [GCNet (ICCVW'2019/TPAMI'2020)](configs/gcnet)
85+
- [x] [Fast-SCNN (ArXiv'2019)](configs/fastscnn)
86+
- [x] [OCRNet (ECCV'2020)](configs/ocrnet)
87+
- [x] [DNLNet (ECCV'2020)](configs/dnlnet)
88+
- [x] [PointRend (CVPR'2020)](configs/point_rend)
89+
- [x] [CGNet (TIP'2020)](configs/cgnet)
9090

9191
## 安装
9292

configs/cgnet/README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@
55
[ALGORITHM]
66

77
```latext
8-
@article{wu2018cgnet,
9-
title={CGNet: A Light-weight Context Guided Network for Semantic Segmentation},
10-
author={Wu, Tianyi and Tang, Sheng and Zhang, Rui and Zhang, Yongdong},
11-
journal={arXiv preprint arXiv:1811.08201},
12-
year={2018}
8+
@article{wu2020cgnet,
9+
title={Cgnet: A light-weight context guided network for semantic segmentation},
10+
author={Wu, Tianyi and Tang, Sheng and Zhang, Rui and Cao, Juan and Zhang, Yongdong},
11+
journal={IEEE Transactions on Image Processing},
12+
volume={30},
13+
pages={1169--1179},
14+
year={2020},
15+
publisher={IEEE}
1316
}
1417
```
1518

configs/point_rend/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
[ALGORITHM]
66

77
```
8-
@misc{alex2019pointrend,
9-
title={PointRend: Image Segmentation as Rendering},
10-
author={Alexander Kirillov and Yuxin Wu and Kaiming He and Ross Girshick},
11-
year={2019},
12-
eprint={1912.08193},
13-
archivePrefix={arXiv},
14-
primaryClass={cs.CV}
8+
@inproceedings{kirillov2020pointrend,
9+
title={Pointrend: Image segmentation as rendering},
10+
author={Kirillov, Alexander and Wu, Yuxin and He, Kaiming and Girshick, Ross},
11+
booktitle={Proceedings of the IEEE/CVF conference on computer vision and pattern recognition},
12+
pages={9799--9808},
13+
year={2020}
1514
}
1615
```
1716

configs/unet/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@
3535

3636
### CHASE_DB1
3737

38-
| Backbone | Head | Image Size | Crop Size | Stride | Lr schd | Mem (GB) | Inf time (fps) | Dice | download |
39-
| ----------- | --------- | ---------- | --------- | -----: | ------- | -------- | -------------: | ----: | ------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
38+
| Backbone | Head | Image Size | Crop Size | Stride | Lr schd | Mem (GB) | Inf time (fps) | Dice | config | download |
39+
| ----------- | --------- | ---------- | --------- | -----: | ------- | -------- | -------------: | ----: | -------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
4040
| UNet-S5-D16 | FCN | 960x999 | 128x128 | 85x85 | 40000 | 0.968 | - | 80.24 | [config](https://github.com/open-mmlab/mmsegmentation/blob/master/configs/unet/fcn_unet_s5-d16_128x128_40k_chase_db1.py) | [model](https://download.openmmlab.com/mmsegmentation/v0.5/unet/fcn_unet_s5-d16_128x128_40k_chase_db1/fcn_unet_s5-d16_128x128_40k_chase_db1_20201223_191051-95852f45.pth) | [log](https://download.openmmlab.com/mmsegmentation/v0.5/unet/fcn_unet_s5-d16_128x128_40k_chase_db1/fcn_unet_s5-d16_128x128_40k_chase_db1-20201223_191051.log.json) |
4141
| UNet-S5-D16 | PSPNet | 960x999 | 128x128 | 85x85 | 40000 | 0.982 | - | 80.36 | [config](https://github.com/open-mmlab/mmsegmentation/blob/master/configs/unet/pspnet_unet_s5-d16_128x128_40k_chase_db1.py) | [model](https://download.openmmlab.com/mmsegmentation/v0.5/unet/pspnet_unet_s5-d16_128x128_40k_chase_db1/pspnet_unet_s5-d16_128x128_40k_chase_db1_20201227_181818-68d4e609.pth) | [log](https://download.openmmlab.com/mmsegmentation/v0.5/unet/pspnet_unet_s5-d16_128x128_40k_chase_db1/pspnet_unet_s5-d16_128x128_40k_chase_db1-20201227_181818.log.json) |
4242
| UNet-S5-D16 | DeepLabV3 | 960x999 | 128x128 | 85x85 | 40000 | 0.999 | - | 80.47 | [config](https://github.com/open-mmlab/mmsegmentation/blob/master/configs/unet/deeplabv3_unet_s5-d16_128x128_40k_chase_db1.py) | [model](https://download.openmmlab.com/mmsegmentation/v0.5/unet/deeplabv3_unet_s5-d16_128x128_40k_chase_db1/deeplabv3_unet_s5-d16_128x128_40k_chase_db1_20201226_094047-4c5aefa3.pth) | [log](https://download.openmmlab.com/mmsegmentation/v0.5/unet/deeplabv3_unet_s5-d16_128x128_40k_chase_db1/deeplabv3_unet_s5-d16_128x128_40k_chase_db1-20201226_094047.log.json) |
4343

4444
### HRF
4545

46-
| Backbone | Head | Image Size | Crop Size | Stride | Lr schd | Mem (GB) | Inf time (fps) | Dice | download |
47-
| ----------- | --------- | ---------- | --------- | ------: | ------- | -------- | -------------: | ----: | ------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
46+
| Backbone | Head | Image Size | Crop Size | Stride | Lr schd | Mem (GB) | Inf time (fps) | Dice | config | download |
47+
| ----------- | --------- | ---------- | --------- | -----: | ------- | -------- | -------------: | ----: | -------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
4848
| UNet-S5-D16 | FCN | 2336x3504 | 256x256 | 170x170 | 40000 | 2.525 | - | 79.45 | [config](https://github.com/open-mmlab/mmsegmentation/blob/master/configs/unet/fcn_unet_s5-d16_256x256_40k_hrf.py) | [model](https://download.openmmlab.com/mmsegmentation/v0.5/unet/fcn_unet_s5-d16_256x256_40k_hrf/fcn_unet_s5-d16_256x256_40k_hrf_20201223_173724-df3ec8c4.pth) | [log](https://download.openmmlab.com/mmsegmentation/v0.5/unet/fcn_unet_s5-d16_256x256_40k_hrf/fcn_unet_s5-d16_256x256_40k_hrf-20201223_173724.log.json) |
4949
| UNet-S5-D16 | PSPNet | 2336x3504 | 256x256 | 170x170 | 40000 | 2.588 | - | 80.07 | [config](https://github.com/open-mmlab/mmsegmentation/blob/master/configs/unet/pspnet_unet_s5-d16_256x256_40k_hrf.py) | [model](https://download.openmmlab.com/mmsegmentation/v0.5/unet/pspnet_unet_s5-d16_256x256_40k_hrf/pspnet_unet_s5-d16_256x256_40k_hrf_20201227_181818-fdb7e29b.pth) | [log](https://download.openmmlab.com/mmsegmentation/v0.5/unet/pspnet_unet_s5-d16_256x256_40k_hrf/pspnet_unet_s5-d16_256x256_40k_hrf-20201227_181818.log.json) |
5050
| UNet-S5-D16 | DeepLabV3 | 2336x3504 | 256x256 | 170x170 | 40000 | 2.604 | - | 80.21 | [config](https://github.com/open-mmlab/mmsegmentation/blob/master/configs/unet/deeplabv3_unet_s5-d16_256x256_40k_hrf.py) | [model](https://download.openmmlab.com/mmsegmentation/v0.5/unet/deeplabv3_unet_s5-d16_256x256_40k_hrf/deeplabv3_unet_s5-d16_256x256_40k_hrf_20201226_094047-3a1fdf85.pth) | [log](https://download.openmmlab.com/mmsegmentation/v0.5/unet/deeplabv3_unet_s5-d16_256x256_40k_hrf/deeplabv3_unet_s5-d16_256x256_40k_hrf-20201226_094047.log.json) |

0 commit comments

Comments
 (0)