File size: 244 Bytes
c9b5796
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
)