Commit 18593f6d authored by Kai Chen's avatar Kai Chen
Browse files

update to v0.5.6

parent a805d4c2
......@@ -36,6 +36,10 @@ This project is released under the [Apache 2.0 license](LICENSE).
## 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)
- Add SSD for COCO and PASCAL VOC.
- Add ResNeXt backbones and detection models.
......@@ -73,6 +77,12 @@ Results and models are available in the [Model zoo](MODEL_ZOO.md).
| SSD | ✗ | ✗ | ✗ | ✓ |
| RetinaNet | ✓ | ✓ | ☐ | ✗ |
Other features
- [x] Group Normalization
- [x] OHEM
- [x] Soft-NMS
## Installation
Please refer to [INSTALL.md](INSTALL.md) for installation and dataset preparation.
......
......@@ -5,14 +5,14 @@ from setuptools import find_packages, setup
def readme():
with open('README.md') as f:
with open('README.md', encoding='utf-8') as f:
content = f.read()
return content
MAJOR = 0
MINOR = 5
PATCH = 5
PATCH = 6
SUFFIX = ''
SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX)
......@@ -89,7 +89,7 @@ if __name__ == '__main__':
long_description=readme(),
keywords='computer vision, object detection',
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']},
classifiers=[
'Development Status :: 4 - Beta',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment