mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-22 13:30:11 +08:00
* move logging >> loggers * add warning * fix tests * logging alias * formatting * formatting
14 lines
450 B
Python
14 lines
450 B
Python
"""
|
|
.. warning:: `logging` package has been renamed to `loggers` since v0.6.1 and will be removed in v0.8.0
|
|
"""
|
|
|
|
import warnings
|
|
|
|
warnings.warn("`logging` package has been renamed to `loggers` since v0.6.1"
|
|
" and will be removed in v0.8.0", DeprecationWarning)
|
|
|
|
from pytorch_lightning.loggers import * # noqa: F403
|
|
from pytorch_lightning.loggers import ( # noqa: E402
|
|
base, comet, mlflow, neptune, tensorboard, test_tube, wandb
|
|
)
|