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

update to v0.5.5

parent 4c63fe5e
...@@ -36,6 +36,12 @@ This project is released under the [Apache 2.0 license](LICENSE). ...@@ -36,6 +36,12 @@ This project is released under the [Apache 2.0 license](LICENSE).
## Updates ## Updates
v0.5.5 (22/12/2018)
- Add SSD for COCO and PASCAL VOC.
- Add ResNeXt backbones and detection models.
- Refactoring for Samplers/Assigners and add OHEM.
- Add VOC dataset and evaluation scripts.
v0.5.4 (27/11/2018) v0.5.4 (27/11/2018)
- Add SingleStageDetector and RetinaNet. - Add SingleStageDetector and RetinaNet.
...@@ -64,7 +70,7 @@ Results and models are available in the [Model zoo](MODEL_ZOO.md). ...@@ -64,7 +70,7 @@ Results and models are available in the [Model zoo](MODEL_ZOO.md).
| Mask R-CNN | ✓ | ✓ | ☐ | ✗ | | Mask R-CNN | ✓ | ✓ | ☐ | ✗ |
| Cascade R-CNN | ✓ | ✓ | ☐ | ✗ | | Cascade R-CNN | ✓ | ✓ | ☐ | ✗ |
| Cascade Mask R-CNN | ✓ | ✓ | ☐ | ✗ | | Cascade Mask R-CNN | ✓ | ✓ | ☐ | ✗ |
| SSD | ✗ | ✗ | ✗ | | | SSD | ✗ | ✗ | ✗ | |
| RetinaNet | ✓ | ✓ | ☐ | ✗ | | RetinaNet | ✓ | ✓ | ☐ | ✗ |
## Installation ## Installation
......
...@@ -12,7 +12,7 @@ def readme(): ...@@ -12,7 +12,7 @@ def readme():
MAJOR = 0 MAJOR = 0
MINOR = 5 MINOR = 5
PATCH = 4 PATCH = 5
SUFFIX = '' SUFFIX = ''
SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX) SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX)
......
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