Spaces:
Runtime error
Runtime error
File size: 324 Bytes
3b96cb1 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import warnings
from opencd.registry import MODELS
ITERACTION_LAYERS = MODELS
def build_interaction_layer(cfg):
"""Build backbone."""
warnings.warn('``build_interaction_layer`` would be deprecated soon, please use '
'``opencd.registry.MODELS.build()`` ')
return ITERACTION_LAYERS.build(cfg)
|