Files
pytorch-lightning/pytorch_lightning/logging/comet_logger.py
T
Jirka Borovec 9785a3e78e Refactor: name modules (#548)
* refactor: rename some modules

* add deprecation warnings

* fix paths
2019-11-26 22:39:18 -05:00

7 lines
235 B
Python

import warnings
warnings.warn("`comet_logger` module has been renamed to `comet` since v0.5.3"
" and will be removed in v0.8.0", DeprecationWarning)
from pytorch_lightning.logging.comet import CometLogger # noqa: E402