File size: 277 Bytes
d9a756e | 1 2 3 4 5 6 7 8 9 10 11 | from .wrapper import *
#------------------------------------------------------------------------------
# Replaceable Backbones
#------------------------------------------------------------------------------
SUPPORTED_BACKBONES = {
'mobilenetv2': MobileNetV2Backbone,
}
|