mirror of
https://github.com/PyRetri/PyRetri.git
synced 2025-06-03 14:49:50 +08:00
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',
|
|
]
|