Skip to content

Commit

Permalink
add fbnetv3_b func
Browse files Browse the repository at this point in the history
  • Loading branch information
wmkai authored Dec 21, 2022
1 parent 21af92d commit cd02485
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 @@ -645,3 +645,9 @@ def tf_mobilenetv3_small_minimal_100(pretrained=False, **kwargs):
kwargs['pad_type'] = 'same'
model = _gen_mobilenet_v3('tf_mobilenetv3_small_minimal_100', 1.0, pretrained=pretrained, **kwargs)
return model

@register_model
def fbnetv3_b(pretrained=False, **kwargs):
""" FBNetV3-B """
model = _gen_fbnetv3('fbnetv3_b', pretrained=pretrained, **kwargs)
return model

0 comments on commit cd02485

Please sign in to comment.