mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-23 13:40:39 +08:00
* 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
8 lines
186 B
Python
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
|