parent
927f031293
commit
cda39b35bd
@ -0,0 +1,4 @@
|
||||
from ._factory import *
|
||||
|
||||
import warnings
|
||||
warnings.warn(f"Importing from {__name__} is deprecated, please import via timm.models", DeprecationWarning)
|
@ -0,0 +1,4 @@
|
||||
from ._features import *
|
||||
|
||||
import warnings
|
||||
warnings.warn(f"Importing from {__name__} is deprecated, please import via timm.models", DeprecationWarning)
|
@ -0,0 +1,4 @@
|
||||
from ._features_fx import *
|
||||
|
||||
import warnings
|
||||
warnings.warn(f"Importing from {__name__} is deprecated, please import via timm.models", DeprecationWarning)
|
@ -0,0 +1,7 @@
|
||||
from ._builder import *
|
||||
from ._helpers import *
|
||||
from ._manipulate import *
|
||||
from ._prune import *
|
||||
|
||||
import warnings
|
||||
warnings.warn(f"Importing from {__name__} is deprecated, please import via timm.models", DeprecationWarning)
|
@ -0,0 +1,4 @@
|
||||
from _hub import *
|
||||
|
||||
import warnings
|
||||
warnings.warn(f"Importing from {__name__} is deprecated, please import via timm.models", DeprecationWarning)
|
@ -0,0 +1,4 @@
|
||||
from ._registry import *
|
||||
|
||||
import warnings
|
||||
warnings.warn(f"Importing from {__name__} is deprecated, please import via timm.models", DeprecationWarning)
|
Loading…
Reference in new issue