-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
SyncBatchNorm Training + ResNetV1C #191
Conversation
docs/model_zoo/index.rst
Outdated
@@ -229,7 +229,7 @@ Table of pre-trained models for semantic segmentation and their performance. | |||
+-------------------+--------------+-----------+-----------+-----------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | |||
| fcn_resnet101_voc | FCN [6]_ | N/A | 70.9_ | `shell script <https://raw.githubusercontent.com/dmlc/web-data/master/gluoncv/logs/segmentation/fcn_resnet101_voc.sh>`_ | `log <https://raw.githubusercontent.com/dmlc/web-data/master/gluoncv/logs/segmentation/fcn_resnet101_voc.log>`_ | | |||
+-------------------+--------------+-----------+-----------+-----------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | |||
| fcn_resnet50_ade | FCN [6]_ | 78.6 | 38.7 | `shell script <https://raw.githubusercontent.com/dmlc/web-data/master/gluoncv/logs/segmentation/fcn_resnet50_ade.sh>`_ | `log <https://raw.githubusercontent.com/dmlc/web-data/master/gluoncv/logs/segmentation/fcn_resnet50_ade.log>`_ | | |||
| fcn_resnet50_ade | FCN [6]_ | 77.1 | 38.5 | `shell script <https://raw.githubusercontent.com/dmlc/web-data/master/gluoncv/logs/segmentation/fcn_resnet50_ade.sh>`_ | `log <https://raw.githubusercontent.com/dmlc/web-data/master/gluoncv/logs/segmentation/fcn_resnet50_ade.log>`_ | | |||
+-------------------+--------------+-----------+-----------+-----------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------+ | |||
| psp_resnet50_ade | PSP [9]_ | 78.4 | 41.1 | `shell script <https://raw.githubusercontent.com/dmlc/web-data/master/gluoncv/logs/segmentation/psp_resnet50_ade.sh>`_ | `log <https://raw.githubusercontent.com/dmlc/web-data/master/gluoncv/logs/segmentation/psp_resnet50_ade.log>`_ | |
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.
psp resnet50 ade's pixAcc seems off
@@ -75,6 +75,9 @@ def get_model(name, **kwargs): | |||
'resnet50_v1b' : resnet50_v1b, | |||
'resnet101_v1b' : resnet101_v1b, | |||
'resnet152_v1b' : resnet152_v1b, | |||
'resnet50_v1c' : resnet50_v1c, |
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.
please add network to model zoo unittest.
Job PR-191-19 is done. |
Job PR-191-20 is done. |
Will merge after this PR apache/mxnet#11502
fixes #138