Files
Travis AddairandJirka acab068c74 Join Horovod workers at the end of trainer.fit() to prevent race conditions following training (#1786)
* 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>
2020-05-12 09:15:25 +00:00

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