Files
pytorch-lightning/pytorch_lightning/logging/__init__.py
T
Nic Eggert 480eed5cb6 Enable any ML experiment tracking framework (#223)
* Implement generic loggers for experiment tracking

* Add tests for loggers

* Get model tests passing

* Test and fix logger pickling

* Expand pickle test and fix bug

* Missed exp -> logger conversion

* Remove commented code

* Add docstrings

* Update logging docs

* Add mlflow to test requirements

* Make linter happy

* Fix mlflow timestamp

* Update Logging.md

* Update test_models.py

* Update test_models.py

* Update test_models.py

* Update properties.md

* Fix tests

* Line length
2019-09-27 12:05:29 -04:00

8 lines
186 B
Python

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