mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-21 13:20:08 +08:00
* 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
15 lines
316 B
Python
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
|