Skip to content

Commit

Permalink
add lcnet_050 func
Browse files Browse the repository at this point in the history
  • Loading branch information
wmkai authored Dec 21, 2022
1 parent 1176725 commit 6f2b5d2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions model/backbone/MobileNetV3.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,3 +670,9 @@ def lcnet_035(pretrained=False, **kwargs):
model = _gen_lcnet('lcnet_035', 0.35, pretrained=pretrained, **kwargs)
return model

@register_model
def lcnet_050(pretrained=False, **kwargs):
""" PP-LCNet 0.5"""
model = _gen_lcnet('lcnet_050', 0.5, pretrained=pretrained, **kwargs)
return model

0 comments on commit 6f2b5d2

Please sign in to comment.