mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-08-25 11:24:04 +08:00
* Join Horovod workers at the end of trainer.fit() to prevent race conditions following training * flake8 * flake8 Co-authored-by: Jirka <jirka.borovec@seznam.cz>
12 lines
428 B
Python
12 lines
428 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
|
|
|
|
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)
|
|
|
|
from pytorch_lightning.loggers import * # noqa: F403 E402
|