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
+34
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
+17
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,32 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
10
10
11
11
- Add enable_autolog_hparams argument to Trainer ([#20593](https://github.com/Lightning-AI/pytorch-lightning/pull/20593))
12
12
13
+
14
+
- Allow LightningCLI to use a customized argument parser class ([#20596](https://github.com/Lightning-AI/pytorch-lightning/pull/20596))
15
+
16
+
13
17
### Changed
14
18
19
+
- Change `wandb` default x-axis to `tensorboard`'s `global_step` when `sync_tensorboard=True` ([#20611](https://github.com/Lightning-AI/pytorch-lightning/pull/20611))
20
+
21
+
22
+
- 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))
23
+
24
+
25
+
15
26
### Removed
16
27
28
+
-
29
+
30
+
17
31
### Fixed
18
32
19
33
- Fix CSVLogger logging hyperparameter at every write which increase latency ([#20594](https://github.com/Lightning-AI/pytorch-lightning/pull/20594))
20
34
21
35
36
+
- 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