Skip to content

Commit dd0a8f3

Browse files
Bordalantiga
authored andcommitted
releasing 2.5.5
1 parent 22c9a37 commit dd0a8f3

File tree

4 files changed

+7
-35
lines changed

4 files changed

+7
-35
lines changed

docs/source-pytorch/common/hooks.rst

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,15 @@ important to understand. The following order is always used:
4444

4545
model = MyModel()
4646
callback = MyCallback()
47-
trainer = Trainer(callbacks=[callback], logger=False, max_epochs=1)
47+
trainer = Trainer(callbacks=[callback], logger=False, max_epochs=1, enable_progress_bar=False)
4848
trainer.fit(model)
4949

5050
.. testoutput::
5151
:hide:
5252
:options: +ELLIPSIS, +NORMALIZE_WHITESPACE
5353

54-
┏━━━┳━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━┳━━━━━━━┓
55-
┃ ┃ Name ┃ Type ┃ Params ┃ Mode ┃ FLOPs ┃
56-
┡━━━╇━━━━━━━╇━━━━━━━━╇━━━━━━━━╇━━━━━━━╇━━━━━━━┩
57-
│ 0 │ layer │ Linear │ 66 │ train │ 0 │
58-
└───┴───────┴────────┴────────┴───────┴───────┘
59-
...
6054
Callback: Training is starting!
6155
Model: Training is starting!
62-
Epoch 0/0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64/64 ...
6356

6457

6558
.. note::

src/lightning/fabric/CHANGELOG.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

77
---
88

9-
## [unReleased] - 2025-09-DD
9+
## [2.5.5] - 2025-09-05
1010

1111
### Changed
1212

1313
- Include `exclude_frozen_parameters` to `DeepSpeedStrategy` ([#21060](https://github.com/Lightning-AI/pytorch-lightning/pull/21060))
14-
15-
1614
- Let `_get_default_process_group_backend_for_device` support more hardware platforms (
1715
[#21057](https://github.com/Lightning-AI/pytorch-lightning/pull/21057), [#21093](https://github.com/Lightning-AI/pytorch-lightning/pull/21093))
1816

19-
2017
### Fixed
2118

2219
- Fixed with adding a missing device id for pytorch 2.8 ([#21105](https://github.com/Lightning-AI/pytorch-lightning/pull/21105))
23-
24-
25-
- Respect `verbose=False` in `seed_everything` when no seed is provided
20+
- Respecting `verbose=False` in `seed_everything` when no seed is provided ([#21161](https://github.com/Lightning-AI/pytorch-lightning/pull/21161))
2621

2722

2823
## [2.5.4] - 2025-08-29

src/lightning/pytorch/CHANGELOG.md

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,38 +6,22 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

77
---
88

9-
## [unReleased] - 2025-09-DD
10-
11-
- Added `exclude_frozen_parameters` to `DeepSpeedStrategy` ([#21060](https://github.com/Lightning-AI/pytorch-lightning/pull/21060))
12-
13-
14-
- Added `PossibleUserWarning` that is raised if modules are in eval mode when training starts ([#21146](https://github.com/Lightning-AI/pytorch-lightning/pull/21146))
15-
9+
## [2.5.5] - 2025-09-05
1610

1711
### Changed
1812

19-
-
20-
13+
- Include `exclude_frozen_parameters` to `DeepSpeedStrategy` ([#21060](https://github.com/Lightning-AI/pytorch-lightning/pull/21060))
14+
- Include `PossibleUserWarning` that is raised if modules are in eval mode when training starts ([#21146](https://github.com/Lightning-AI/pytorch-lightning/pull/21146))
2115

2216
### Fixed
2317

2418
- Fixed `LightningCLI` not using `ckpt_path` hyperparameters to instantiate classes ([#21116](https://github.com/Lightning-AI/pytorch-lightning/pull/21116))
25-
26-
2719
- Fixed callbacks by defer step/time-triggered `ModelCheckpoint` saves until validation metrics are available ([#21106](https://github.com/Lightning-AI/pytorch-lightning/pull/21106))
28-
29-
3020
- Fixed with adding a missing device id for pytorch 2.8 ([#21105](https://github.com/Lightning-AI/pytorch-lightning/pull/21105))
31-
32-
3321
- Fixed `TQDMProgressBar` not resetting correctly when using both a finite and iterable dataloader ([#21147](https://github.com/Lightning-AI/pytorch-lightning/pull/21147))
34-
35-
3622
- Fixed cleanup of temporary files from `Tuner` on crashes ([#21162](https://github.com/Lightning-AI/pytorch-lightning/pull/21162))
3723

3824

39-
---
40-
4125
## [2.5.4] - 2025-08-29
4226

4327
### Fixed

src/version.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.4
1+
2.5.5

0 commit comments

Comments
 (0)