2020-12-21 23:23:33 +00:00
|
|
|
from warnings import warn
|
2020-10-19 20:20:17 +00:00
|
|
|
|
2021-01-30 14:28:59 +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
|
|
|
|
2020-12-21 23:23:33 +00:00
|
|
|
from pytorch_lightning.utilities.model_helpers import * # noqa: F403 E402 F401
|