Skip to content

Commit

Permalink
Make test_tube optional (Lightning-AI#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rikorose authored and williamFalcon committed Oct 1, 2019
1 parent 324c28e commit 8a24722
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pytorch_lightning/logging/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
from .base import LightningLoggerBase, rank_zero_only
from .test_tube_logger import TestTubeLogger

try:
from .test_tube_logger import TestTubeLogger
except ModuleNotFoundError:
pass
try:
from .mlflow_logger import MLFlowLogger
except ModuleNotFoundError:
Expand Down

0 comments on commit 8a24722

Please sign in to comment.