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: CHANGELOG.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,16 @@
1
1
# Release Notes
2
2
3
-
## v0.10.4 UNRELEASED (xx/xx/xxxx)
3
+
## v1.0.0 Update to pytorch 2.0 (10/04/2023)
4
+
5
+
6
+
### Breaking Changes
7
+
8
+
- Upgraded to pytorch 2.0 and lightning 2.0. This brings a couple of changes, such as configuration of trainers. See the [lightning upgrade guide](https://lightning.ai/docs/pytorch/latest/upgrade/migration_guide.html). For PyTorch Forecasting, this particularly means if you are developing own models, the class method `epoch_end` has been renamed to `on_epoch_end` and replacing `model.summarize()` with `ModelSummary(model, max_depth=-1)` and `Tuner(trainer)` is its own class, so `trainer.tuner` needs replacing. (#1280)
9
+
- Changed the `predict()` interface returning named tuple - see tutorials.
10
+
11
+
### Changes
12
+
13
+
- The predict method is now using the lightning predict functionality and allows writing results to disk (#1280).
4
14
5
15
### Fixed
6
16
@@ -81,7 +91,7 @@
81
91
82
92
### Added
83
93
84
-
- Added support for running `pytorch_lightning.trainer.test` (#759)
94
+
- Added support for running `lightning.trainer.test` (#759)
85
95
86
96
### Fixed
87
97
@@ -402,7 +412,7 @@ This release has only one purpose: Allow usage of PyTorch Lightning 1.0 - all te
402
412
- Using `LearningRateMonitor` instead of `LearningRateLogger`
403
413
- Use `EarlyStopping` callback in trainer `callbacks` instead of `early_stopping` argument
404
414
- Update metric system `update()` and `compute()` methods
405
-
- Use `trainer.tuner.lr_find()` instead of `trainer.lr_find()` in tutorials and examples
415
+
- Use `Tuner(trainer).lr_find()` instead of `trainer.lr_find()` in tutorials and examples
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,6 @@ Specifically, the package provides
34
34
- Multiple neural network architectures for timeseries forecasting that have been enhanced
35
35
for real-world deployment and come with in-built interpretation capabilities
36
36
- Multi-horizon timeseries metrics
37
-
- Ranger optimizer for faster model training
38
37
- Hyperparameter tuning with [optuna](https://optuna.readthedocs.io/)
39
38
40
39
The package is built on [pytorch-lightning](https://pytorch-lightning.readthedocs.io/) to allow training on CPUs, single and multiple GPUs out-of-the-box.
@@ -86,11 +85,12 @@ Networks can be trained with the [PyTorch Lighning Trainer](https://pytorch-ligh
0 commit comments