PyRetri/pyretri/models/__init__.py

14 lines
182 B
Python
Raw Normal View History

2020-04-02 14:00:49 +08:00
# -*- coding: utf-8 -*-
from yacs.config import CfgNode
from .config import get_model_cfg
from .builder import build_model
__all__ = [
'get_model_cfg',
'build_model',
]