Spaces:
xnetba
/
Runtime error

xnetba's picture
Duplicate from brjathu/HMR2.0
a24002c
raw
history blame contribute delete
193 Bytes
from .vit import vit
def create_backbone(cfg):
if cfg.MODEL.BACKBONE.TYPE == 'vit':
return vit(cfg)
else:
raise NotImplementedError('Backbone type is not implemented')