Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
SOLOv2-pytorch
Commits
18593f6d
Commit
18593f6d
authored
Jan 17, 2019
by
Kai Chen
Browse files
update to v0.5.6
parent
a805d4c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
README.md
README.md
+10
-0
setup.py
setup.py
+3
-3
No files found.
README.md
View file @
18593f6d
...
@@ -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.
...
...
setup.py
View file @
18593f6d
...
@@ -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'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment