Skip to content

Commit

Permalink
add lcnet_100 func
Browse files Browse the repository at this point in the history
  • Loading branch information
wmkai authored Dec 21, 2022
1 parent 0fb4f9e commit 9c3bb28
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 @@ -681,3 +681,9 @@ def lcnet_075(pretrained=False, **kwargs):
""" PP-LCNet 1.0"""
model = _gen_lcnet('lcnet_075', 0.75, pretrained=pretrained, **kwargs)
return model

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

0 comments on commit 9c3bb28

Please sign in to comment.