Skip to content

Commit 4c43e57

Browse files
alexkuzmikAliaksandr.Kuzmik
and
Aliaksandr.Kuzmik
authored
Comet.ml logger - add usage tracking (#14906)
Co-authored-by: Aliaksandr.Kuzmik <[email protected]>
1 parent c8059d4 commit 4c43e57

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/pytorch_lightning/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
5151
- Added a warning when the model passed to `LightningLite.setup()` does not have all parameters on the same device ([#14822](https://github.com/Lightning-AI/lightning/pull/14822))
5252

5353

54+
- The `CometLogger` now flags the Comet Experiments as being created from Pytorch-Lightning for analytics purposes
55+
56+
5457
- Introduce `ckpt_path="hpc"` keyword for checkpoint loading ([#14911](https://github.,com/Lightning-AI/lightning/pull/14911))
5558

5659

60+
5761
- Added a more descriptive error message when attempting to fork processes with pre-initialized CUDA context ([#14709](https://github.com/Lightning-AI/lightning/issues/14709))
5862

5963

src/pytorch_lightning/loggers/comet.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ def experiment(self) -> Union[CometExperiment, CometExistingExperiment, CometOff
301301
self._experiment = CometOfflineExperiment(
302302
offline_directory=self.save_dir, project_name=self._project_name, **self._kwargs
303303
)
304+
self._experiment.log_other("Created from", "pytorch-lightning")
304305
finally:
305306
if self._future_experiment_key is not None:
306307
os.environ.pop("COMET_EXPERIMENT_KEY")

0 commit comments

Comments
 (0)