12 lines
392 B
Python
12 lines
392 B
Python
"""
|
|
.. warning:: `model_saving` module has been renamed to `saving` since v0.6.0.
|
|
The deprecated module name will be removed in v0.8.0.
|
|
"""
|
|
|
|
import warnings
|
|
|
|
warnings.warn("`model_saving` module has been renamed to `saving` since v0.6.0."
|
|
" The deprecated module name will be removed in v0.8.0.", DeprecationWarning)
|
|
|
|
from pytorch_lightning.core.saving import * # noqa: F403
|