Skip to content

FIX: deprecated pytorch lightning trainer flags #866

Merged
merged 4 commits into from
Aug 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix behavior of SARIMAXModel if simple_differencing=True is set ([#837](https://github.com/tinkoff-ai/etna/pull/837))
-
- Bug python3.7 and TypedDict import ([867](https://github.com/tinkoff-ai/etna/pull/867))
-
- Fix deprecated pytorch lightning trainer flags ([#866](https://github.com/tinkoff-ai/etna/pull/866))
- ProphetModel doesn't work with cap and floor regressors ([#842](https://github.com/tinkoff-ai/etna/pull/842))
- Fix problem with encoding category types in OHE ([#843](https://github.com/tinkoff-ai/etna/pull/843))
-
Expand Down
1 change: 0 additions & 1 deletion etna/models/nn/deepar.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ def fit(self, ts: TSDataset) -> "DeepARModel":
logger=tslogger.pl_loggers,
max_epochs=self.max_epochs,
gpus=self.gpus,
checkpoint_callback=False,
gradient_clip_val=self.gradient_clip_val,
)
trainer_kwargs.update(self.trainer_kwargs)
Expand Down
1 change: 0 additions & 1 deletion etna/models/nn/tft.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ def fit(self, ts: TSDataset) -> "TFTModel":
logger=tslogger.pl_loggers,
max_epochs=self.max_epochs,
gpus=self.gpus,
checkpoint_callback=False,
gradient_clip_val=self.gradient_clip_val,
)
trainer_kwargs.update(self.trainer_kwargs)
Expand Down