Files
pytorch-lightning/pytorch_lightning/logging/__init__.py
T
Cristobal Eyzaguirre ab6794406e Logger consistency (#397)
* added comet logger

* bug fix in cases where comet was not imported before torch

* fixed mlflow logger to be consistent with docs, updated cometLogger and cometLoggers docs + flake 8 compliance
2019-10-22 04:51:17 +03:00

15 lines
316 B
Python

from .base import LightningLoggerBase, rank_zero_only
try:
from .test_tube_logger import TestTubeLogger
except ModuleNotFoundError:
pass
try:
from .mlflow_logger import MLFlowLogger
except ModuleNotFoundError:
pass
try:
from .comet_logger import CometLogger
except ModuleNotFoundError:
pass