You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source-pytorch/visualize/loggers.rst
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,3 +54,37 @@ Track and Visualize Experiments
54
54
55
55
</div>
56
56
</div>
57
+
58
+
.. _mlflow_logger:
59
+
60
+
MLflow Logger
61
+
-------------
62
+
63
+
The MLflow logger in PyTorch Lightning now includes a `checkpoint_path_prefix` parameter. This parameter allows you to prefix the checkpoint artifact's path when logging checkpoints as artifacts.
64
+
65
+
Example usage:
66
+
67
+
.. code-block:: python
68
+
69
+
import lightning as L
70
+
from lightning.pytorch.loggers import MLFlowLogger
Copy file name to clipboardExpand all lines: src/lightning/pytorch/CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,17 +8,30 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
8
8
9
9
### Added
10
10
11
+
-
12
+
13
+
11
14
### Changed
12
15
13
16
- Change `wandb` default x-axis to `tensorboard`'s `global_step` when `sync_tensorboard=True` ([#20611](https://github.com/Lightning-AI/pytorch-lightning/pull/20611))
14
17
18
+
19
+
- Added a new `checkpoint_path_prefix` parameter to the MLflow logger which can control the path to where the MLflow artifacts for the model checkpoints are stored ([#20538](https://github.com/Lightning-AI/pytorch-lightning/pull/20538))
20
+
21
+
15
22
### Removed
16
23
24
+
-
25
+
26
+
17
27
### Fixed
18
28
19
29
- Fix CSVLogger logging hyperparameter at every write which increase latency ([#20594](https://github.com/Lightning-AI/pytorch-lightning/pull/20594))
20
30
21
31
32
+
- Always call `WandbLogger.experiment` first in `_call_setup_hook` to ensure `tensorboard` logs can sync to `wandb` ([#20610](https://github.com/Lightning-AI/pytorch-lightning/pull/20610))
0 commit comments