mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-23 13:40:39 +08:00
* dataloaders with fast_dev_run * dataloaders with fast_dev_run * dataloaders with fast_dev_run * fix * pep 8
11 lines
422 B
Python
11 lines
422 B
Python
"""
|
|
.. warning:: `logging` package has been renamed to `loggers` since v0.7.0.
|
|
The deprecated package name will be removed in v0.9.0.
|
|
"""
|
|
|
|
from pytorch_lightning.utilities import rank_zero_warn
|
|
from pytorch_lightning.loggers import * # noqa: F403
|
|
|
|
rank_zero_warn("`logging` package has been renamed to `loggers` since v0.7.0"
|
|
" The deprecated package name will be removed in v0.9.0.", DeprecationWarning)
|