2020-02-21 18:18:27 +00:00
|
|
|
"""
|
2020-03-06 11:45:59 +00:00
|
|
|
.. warning:: `logging` package has been renamed to `loggers` since v0.7.0 and will be removed in v0.9.0
|
2020-02-21 18:18:27 +00:00
|
|
|
"""
|
|
|
|
|
2020-04-09 18:05:46 +00:00
|
|
|
from pytorch_lightning.utilities import rank_zero_warn
|
2020-05-12 03:32:44 +00:00
|
|
|
from pytorch_lightning.loggers.neptune import NeptuneLogger # noqa: F403
|
2020-03-27 12:40:47 +00:00
|
|
|
|
2020-04-09 18:05:46 +00:00
|
|
|
rank_zero_warn("`logging.neptune` module has been renamed to `loggers.neptune` since v0.7.0."
|
|
|
|
" The deprecated module name will be removed in v0.9.0.", DeprecationWarning)
|