Skip to content
Snippets Groups Projects
Unverified Commit b6561a1a authored by Kai Chen's avatar Kai Chen Committed by GitHub
Browse files

Merge pull request #309 from hellock/master

The last release on PyTorch 0.4.1
parents 3b6ae96d ed5b76e6
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.7 (06/02/2019)
- Add support for Deformable ConvNet v2. (Many thanks to the authors and [@chengdazhi](https://github.com/chengdazhi))
- This is the last release based on PyTorch 0.4.1.
v0.5.6 (17/01/2019) v0.5.6 (17/01/2019)
- Add support for Group Normalization. - Add support for Group Normalization.
- Unify RPNHead and single stage heads (RetinaHead, SSDHead) with AnchorHead. - Unify RPNHead and single stage heads (RetinaHead, SSDHead) with AnchorHead.
......
...@@ -12,7 +12,7 @@ def readme(): ...@@ -12,7 +12,7 @@ def readme():
MAJOR = 0 MAJOR = 0
MINOR = 5 MINOR = 5
PATCH = 6 PATCH = 7
SUFFIX = '' SUFFIX = ''
SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX) SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX)
......
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