Spaces:
Running
Running
File size: 469 Bytes
e02ffe6 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from .backbone import RepVGG_8_1_align
def build_backbone(config):
if config['backbone_type'] == 'RepVGG':
if config['align_corner'] is False:
if config['resolution'] == (8, 1):
return RepVGG_8_1_align(config['backbone'])
else:
raise ValueError(f"LOFTR.ALIGN_CORNER {config['align_corner']} not supported.")
else:
raise ValueError(f"LOFTR.BACKBONE_TYPE {config['backbone_type']} not supported.")
|