2019-12-04 11:59:19 +00:00
|
|
|
"""
|
2020-02-11 12:41:15 +00:00
|
|
|
.. warning:: `test_tube_logger` module has been renamed to `test_tube` since v0.6.0.
|
|
|
|
The deprecated module name will be removed in v0.8.0.
|
2019-12-04 11:59:19 +00:00
|
|
|
"""
|
|
|
|
|
2020-04-09 18:05:46 +00:00
|
|
|
from pytorch_lightning.utilities import rank_zero_warn
|
2019-09-27 16:05:29 +00:00
|
|
|
|
2020-04-09 18:05:46 +00:00
|
|
|
rank_zero_warn("`test_tube_logger` module has been renamed to `test_tube` since v0.6.0."
|
|
|
|
" The deprecated module name will be removed in v0.8.0.", DeprecationWarning)
|
2019-09-27 16:05:29 +00:00
|
|
|
|
2020-02-01 20:47:58 +00:00
|
|
|
from pytorch_lightning.loggers.test_tube import TestTubeLogger # noqa: E402
|