mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-21 13:20:08 +08:00
* dataloaders with fast_dev_run * dataloaders with fast_dev_run * dataloaders with fast_dev_run * fix * pep 8
11 lines
472 B
Python
11 lines
472 B
Python
"""
|
|
.. warning:: `root_module.root_module` module has been renamed to `core.lightning` since v0.6.0.
|
|
The deprecated module name will be removed in v0.8.0.
|
|
"""
|
|
|
|
from pytorch_lightning.utilities import rank_zero_warn
|
|
from pytorch_lightning.core.lightning import * # noqa: F403
|
|
|
|
rank_zero_warn("`root_module.root_module` module has been renamed to `core.lightning` since v0.6.0."
|
|
" The deprecated module name will be removed in v0.8.0.", DeprecationWarning)
|