Skip to content
Snippets Groups Projects
Commit 18593f6d authored by Kai Chen's avatar Kai Chen
Browse files

update to v0.5.6

parent a805d4c2
No related branches found
No related tags found
No related merge requests found
...@@ -36,6 +36,10 @@ This project is released under the [Apache 2.0 license](LICENSE). ...@@ -36,6 +36,10 @@ This project is released under the [Apache 2.0 license](LICENSE).
## Updates ## Updates
v0.5.6 (17/01/2019)
- Add support for Group Normalization.
- Unify RPNHead and single stage heads (RetinaHead, SSDHead) with AnchorHead.
v0.5.5 (22/12/2018) v0.5.5 (22/12/2018)
- Add SSD for COCO and PASCAL VOC. - Add SSD for COCO and PASCAL VOC.
- Add ResNeXt backbones and detection models. - Add ResNeXt backbones and detection models.
...@@ -73,6 +77,12 @@ Results and models are available in the [Model zoo](MODEL_ZOO.md). ...@@ -73,6 +77,12 @@ Results and models are available in the [Model zoo](MODEL_ZOO.md).
| SSD | ✗ | ✗ | ✗ | ✓ | | SSD | ✗ | ✗ | ✗ | ✓ |
| RetinaNet | ✓ | ✓ | ☐ | ✗ | | RetinaNet | ✓ | ✓ | ☐ | ✗ |
Other features
- [x] Group Normalization
- [x] OHEM
- [x] Soft-NMS
## Installation ## Installation
Please refer to [INSTALL.md](INSTALL.md) for installation and dataset preparation. Please refer to [INSTALL.md](INSTALL.md) for installation and dataset preparation.
......
...@@ -5,14 +5,14 @@ from setuptools import find_packages, setup ...@@ -5,14 +5,14 @@ from setuptools import find_packages, setup
def readme(): def readme():
with open('README.md') as f: with open('README.md', encoding='utf-8') as f:
content = f.read() content = f.read()
return content return content
MAJOR = 0 MAJOR = 0
MINOR = 5 MINOR = 5
PATCH = 5 PATCH = 6
SUFFIX = '' SUFFIX = ''
SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX) SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX)
...@@ -89,7 +89,7 @@ if __name__ == '__main__': ...@@ -89,7 +89,7 @@ if __name__ == '__main__':
long_description=readme(), long_description=readme(),
keywords='computer vision, object detection', keywords='computer vision, object detection',
url='https://github.com/open-mmlab/mmdetection', url='https://github.com/open-mmlab/mmdetection',
packages=find_packages(exclude=('configs', 'tools', 'demo',)), packages=find_packages(exclude=('configs', 'tools', 'demo')),
package_data={'mmdet.ops': ['*/*.so']}, package_data={'mmdet.ops': ['*/*.so']},
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment