11 lines
373 B
Python
11 lines
373 B
Python
"""
|
|
.. warning:: `test_tube_logger` module has been renamed to `test_tube` since v0.6.0 and will be removed in v0.8.0
|
|
"""
|
|
|
|
import warnings
|
|
|
|
warnings.warn("`test_tube_logger` module has been renamed to `test_tube` since v0.6.0"
|
|
" and will be removed in v0.8.0", DeprecationWarning)
|
|
|
|
from pytorch_lightning.logging.test_tube import TestTubeLogger # noqa: E402
|