wangerniu's picture
添加必要文件
c9b5796
raw
history blame
244 Bytes
import warnings
from . import train
from . import losses
from . import metrics
__all__ = ["train", "losses", "metrics"]
warnings.warn(
"`smp.utils` module is deprecated and will be removed in future releases.",
DeprecationWarning,
)