mirror of https://github.com/PyRetri/PyRetri.git
14 lines
182 B
Python
14 lines
182 B
Python
|
# -*- 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',
|
||
|
]
|