lightning/pytorch_lightning/utilities/model_utils.py

9 lines
243 B
Python
Raw Normal View History

from warnings import warn
2020-10-19 20:20:17 +00:00
warn(
"`model_utils` package has been renamed to `model_helpers` since v1.2 and will be removed in v1.4",
DeprecationWarning
)
2020-10-19 20:20:17 +00:00
from pytorch_lightning.utilities.model_helpers import * # noqa: F403 E402 F401