-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Error messages for removed DataModule hooks #15072
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 9 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
d4aeb38
datamodule
awaelchli 3c8c2df
Merge branch 'master' into feature/remove/datamodule-hooks
awaelchli 7264276
update
awaelchli 378363e
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 0c858d9
comment for borda
awaelchli 2f847c8
Merge branch 'master' into feature/remove/datamodule-hooks
awaelchli 1e4bddc
update
awaelchli d733502
mypy
awaelchli fe8c21c
x
awaelchli 379693d
Apply suggestions from code review
awaelchli dd6cb26
update
awaelchli da758db
Merge branch 'master' into feature/remove/datamodule-hooks
awaelchli 3e349b6
Merge branch 'master' into feature/remove/datamodule-hooks
awaelchli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Copyright The PyTorch Lightning team. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
from typing import Any | ||
|
||
from pytorch_lightning import LightningDataModule, LightningModule | ||
|
||
|
||
def _use_amp(_: LightningModule) -> None: | ||
# Remove in v2.0.0 | ||
raise AttributeError( | ||
"`LightningModule.use_amp` was deprecated in v1.6 and is no longer accessible as of v1.8." | ||
" Please use `Trainer.amp_backend`.", | ||
) | ||
|
||
|
||
def _use_amp_setter(_: LightningModule, __: bool) -> None: | ||
# Remove in v2.0.0 | ||
awaelchli marked this conversation as resolved.
Show resolved
Hide resolved
|
||
raise AttributeError( | ||
"`LightningModule.use_amp` was deprecated in v1.6 and is no longer accessible as of v1.8." | ||
" Please use `Trainer.amp_backend`.", | ||
) | ||
|
||
|
||
def _on_save_checkpoint(_: LightningDataModule, __: Any) -> None: | ||
# Remove in v2.0.0 | ||
awaelchli marked this conversation as resolved.
Show resolved
Hide resolved
|
||
raise NotImplementedError( | ||
"`LightningDataModule.on_save_checkpoint` was deprecated in v1.6 and removed in v1.8." | ||
" Use `state_dict` instead." | ||
) | ||
|
||
|
||
def _on_load_checkpoint(_: LightningDataModule, __: Any) -> None: | ||
# Remove in v2.0.0 | ||
awaelchli marked this conversation as resolved.
Show resolved
Hide resolved
|
||
raise NotImplementedError( | ||
"`LightningDataModule.on_load_checkpoint` was deprecated in v1.6 and removed in v1.8." | ||
" Use `load_state_dict` instead." | ||
) | ||
|
||
|
||
# Properties/Attributes | ||
LightningModule.use_amp = property(fget=_use_amp, fset=_use_amp_setter) | ||
|
||
# Methods | ||
LightningDataModule.on_save_checkpoint = _on_save_checkpoint | ||
LightningDataModule.on_load_checkpoint = _on_load_checkpoint |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright The PyTorch Lightning team. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
import pytest | ||
|
||
from pytorch_lightning import Trainer | ||
from pytorch_lightning.demos.boring_classes import BoringDataModule, BoringModel | ||
|
||
|
||
def test_v2_0_0_unsupported_datamodule_on_save_load_checkpoint(): | ||
datamodule = BoringDataModule() | ||
with pytest.raises( | ||
NotImplementedError, | ||
match="`LightningDataModule.on_save_checkpoint` was deprecated in v1.6 and removed in v1.8.", | ||
): | ||
datamodule.on_save_checkpoint({}) | ||
|
||
with pytest.raises( | ||
NotImplementedError, | ||
match="`LightningDataModule.on_load_checkpoint` was deprecated in v1.6 and removed in v1.8.", | ||
): | ||
datamodule.on_load_checkpoint({}) | ||
|
||
class OnSaveDataModule(BoringDataModule): | ||
def on_save_checkpoint(self, checkpoint): | ||
pass | ||
|
||
class OnLoadDataModule(BoringDataModule): | ||
def on_load_checkpoint(self, checkpoint): | ||
pass | ||
|
||
trainer = Trainer() | ||
model = BoringModel() | ||
|
||
with pytest.raises( | ||
NotImplementedError, | ||
match="`LightningDataModule.on_save_checkpoint` was deprecated in v1.6 and removed in v1.8.", | ||
): | ||
trainer.fit(model, OnSaveDataModule()) | ||
|
||
with pytest.raises( | ||
NotImplementedError, | ||
match="`LightningDataModule.on_load_checkpoint` was deprecated in v1.6 and removed in v1.8.", | ||
): | ||
trainer.fit(model, OnLoadDataModule()) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.