Commit b88561db authored by Kai Chen's avatar Kai Chen
Browse files

upgrade to v0.6.0

parent d67a2e16
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
- Python 3.4+ - Python 3.4+
- PyTorch 1.0 - PyTorch 1.0
- Cython - Cython
- [mmcv](https://github.com/open-mmlab/mmcv) >= 0.2.2 - [mmcv](https://github.com/open-mmlab/mmcv) >= 0.2.5
### Install mmdetection ### Install mmdetection
......
...@@ -39,6 +39,10 @@ This project is released under the [Apache 2.0 license](LICENSE). ...@@ -39,6 +39,10 @@ This project is released under the [Apache 2.0 license](LICENSE).
## Updates ## Updates
v0.6.0 (14/04/2019)
- Various minor fixes and user experience improvements.
- Replace NMS and SigmoidFocalLoss with Pytorch CUDA extensions.
v0.6rc0(06/02/2019) v0.6rc0(06/02/2019)
- Migrate to PyTorch 1.0. - Migrate to PyTorch 1.0.
......
...@@ -12,7 +12,7 @@ def readme(): ...@@ -12,7 +12,7 @@ def readme():
MAJOR = 0 MAJOR = 0
MINOR = 6 MINOR = 6
PATCH = 'rc0' PATCH = 0
SUFFIX = '' SUFFIX = ''
SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX) SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX)
...@@ -106,7 +106,7 @@ if __name__ == '__main__': ...@@ -106,7 +106,7 @@ if __name__ == '__main__':
setup_requires=['pytest-runner'], setup_requires=['pytest-runner'],
tests_require=['pytest'], tests_require=['pytest'],
install_requires=[ install_requires=[
'mmcv', 'numpy', 'matplotlib', 'six', 'terminaltables', 'mmcv>=0.2.5', 'numpy', 'matplotlib', 'six', 'terminaltables',
'pycocotools' 'pycocotools'
], ],
zip_safe=False) zip_safe=False)
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