Spaces:
Running on Zero
Running on Zero
File size: 606 Bytes
619344d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import warnings
# suppress warnings from MMCV about optional dependencies
warnings.filterwarnings(
'ignore',
category=UserWarning,
message=r'^Fail to import ``MultiScaleDeformableAttention`` from ``mmcv\.ops\.multi_scale_deform_attn``.*',
module=r'^mmcv\.cnn\.bricks\.transformer$',
)
# # import all modules for registration
# from .apis import *
# # from .datasets import *
# # from .models import *
# from .models.piflow_loader import PiFlowLoaderMixin
# from .ops import *
# from .runner import *
# from .evaluation import *
# from .utils import *
# from .version import __version__
|