diff --git a/mmcv/runner/checkpoint.py b/mmcv/runner/checkpoint.py index d9303f74c..2b5b22aca 100644 --- a/mmcv/runner/checkpoint.py +++ b/mmcv/runner/checkpoint.py @@ -23,6 +23,8 @@ open_mmlab_model_urls = { 'jhu/resnet101_gn_ws': 'https://s3.ap-northeast-2.amazonaws.com/open-mmlab/pretrain/third_party/resnet101_gn_ws-8f94f771.pth', # noqa: E501 'jhu/resnext50_32x4d_gn_ws': 'https://s3.ap-northeast-2.amazonaws.com/open-mmlab/pretrain/third_party/resnext50_32x4d_gn_ws-ad7a50a4.pth', # noqa: E501 'jhu/resnext101_32x4d_gn_ws': 'https://s3.ap-northeast-2.amazonaws.com/open-mmlab/pretrain/third_party/resnext101_32x4d_gn_ws-6adc888e.pth', # noqa: E501 + 'jhu/resnext50_32x4d_gn': 'https://s3.ap-northeast-2.amazonaws.com/open-mmlab/pretrain/third_party/resnext50_32x4d_gn-c7e8b754.pth', # noqa: E501 + 'jhu/resnext101_32x4d_gn': 'https://s3.ap-northeast-2.amazonaws.com/open-mmlab/pretrain/third_party/resnext101_32x4d_gn-ac3bb84e.pth', # noqa: E501 } # yapf: disable diff --git a/mmcv/version.py b/mmcv/version.py index 44b18069b..407b8a2b0 100644 --- a/mmcv/version.py +++ b/mmcv/version.py @@ -1 +1 @@ -__version__ = '0.2.6' +__version__ = '0.2.7' diff --git a/setup.py b/setup.py index 7395f28c9..57689b815 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,7 @@ setup( 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: Utilities', ], url='https://github.com/open-mmlab/mmcv',