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
OpenDAS
vision
Commits
85ac742a
Unverified
Commit
85ac742a
authored
Nov 05, 2021
by
Vasilis Vryniotis
Committed by
GitHub
Nov 05, 2021
Browse files
Adding multiweight support to RetinaNet. (#4872)
parent
ed2eefc7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
75 additions
and
0 deletions
+75
-0
torchvision/prototype/models/detection/__init__.py
torchvision/prototype/models/detection/__init__.py
+1
-0
torchvision/prototype/models/detection/retinanet.py
torchvision/prototype/models/detection/retinanet.py
+74
-0
No files found.
torchvision/prototype/models/detection/__init__.py
View file @
85ac742a
from
.faster_rcnn
import
*
from
.faster_rcnn
import
*
from
.mask_rcnn
import
*
from
.mask_rcnn
import
*
from
.retinanet
import
*
torchvision/prototype/models/detection/retinanet.py
0 → 100644
View file @
85ac742a
import
warnings
from
typing
import
Any
,
Optional
from
....models.detection.retinanet
import
(
_resnet_fpn_extractor
,
_validate_trainable_layers
,
RetinaNet
,
LastLevelP6P7
,
misc_nn_ops
,
overwrite_eps
,
)
from
...transforms.presets
import
CocoEval
from
.._api
import
Weights
,
WeightEntry
from
.._meta
import
_COCO_CATEGORIES
from
..resnet
import
ResNet50Weights
,
resnet50
__all__
=
[
"RetinaNet"
,
"RetinaNetResNet50FPNWeights"
,
"retinanet_resnet50_fpn"
,
]
class
RetinaNetResNet50FPNWeights
(
Weights
):
Coco_RefV1
=
WeightEntry
(
url
=
"https://download.pytorch.org/models/retinanet_resnet50_fpn_coco-eeacb38b.pth"
,
transforms
=
CocoEval
,
meta
=
{
"categories"
:
_COCO_CATEGORIES
,
"recipe"
:
"https://github.com/pytorch/vision/tree/main/references/detection#retinanet"
,
"map"
:
36.4
,
},
)
def
retinanet_resnet50_fpn
(
weights
:
Optional
[
RetinaNetResNet50FPNWeights
]
=
None
,
weights_backbone
:
Optional
[
ResNet50Weights
]
=
None
,
progress
:
bool
=
True
,
num_classes
:
int
=
91
,
trainable_backbone_layers
:
Optional
[
int
]
=
None
,
**
kwargs
:
Any
,
)
->
RetinaNet
:
if
"pretrained"
in
kwargs
:
warnings
.
warn
(
"The argument pretrained is deprecated, please use weights instead."
)
weights
=
RetinaNetResNet50FPNWeights
.
Coco_RefV1
if
kwargs
.
pop
(
"pretrained"
)
else
None
weights
=
RetinaNetResNet50FPNWeights
.
verify
(
weights
)
if
"pretrained_backbone"
in
kwargs
:
warnings
.
warn
(
"The argument pretrained_backbone is deprecated, please use weights_backbone instead."
)
weights_backbone
=
ResNet50Weights
.
ImageNet1K_RefV1
if
kwargs
.
pop
(
"pretrained_backbone"
)
else
None
weights_backbone
=
ResNet50Weights
.
verify
(
weights_backbone
)
if
weights
is
not
None
:
weights_backbone
=
None
num_classes
=
len
(
weights
.
meta
[
"categories"
])
trainable_backbone_layers
=
_validate_trainable_layers
(
weights
is
not
None
or
weights_backbone
is
not
None
,
trainable_backbone_layers
,
5
,
3
)
backbone
=
resnet50
(
weights
=
weights_backbone
,
progress
=
progress
,
norm_layer
=
misc_nn_ops
.
FrozenBatchNorm2d
)
# skip P2 because it generates too many anchors (according to their paper)
backbone
=
_resnet_fpn_extractor
(
backbone
,
trainable_backbone_layers
,
returned_layers
=
[
2
,
3
,
4
],
extra_blocks
=
LastLevelP6P7
(
256
,
256
)
)
model
=
RetinaNet
(
backbone
,
num_classes
,
**
kwargs
)
if
weights
is
not
None
:
model
.
load_state_dict
(
weights
.
state_dict
(
progress
=
progress
))
if
weights
==
RetinaNetResNet50FPNWeights
.
Coco_RefV1
:
overwrite_eps
(
model
,
0.0
)
return
model
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