-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Disable eval dataloaders replacement during overfitting #10877
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 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4f48372
disable eval dataloader replacement
rohitgr7 2c44c2b
update docs
rohitgr7 4df09a1
rm EvalModelTemplate
rohitgr7 c719cbb
address reviews
rohitgr7 21b3d3e
Apply suggestions from code review
rohitgr7 66fc21f
Apply suggestions from code review
rohitgr7 1074612
update test
rohitgr7 832fdf1
cleanup
rohitgr7 33e7802
address reviews
rohitgr7 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
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
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,75 @@ | ||
# 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.trainer.states import RunningStage | ||
from tests.helpers.boring_model import BoringModel | ||
|
||
|
||
def test_num_dataloader_batches(tmpdir): | ||
"""Tests that the correct number of batches are allocated.""" | ||
# when we have fewer batches in the dataloader we should use those instead of the limit | ||
model = BoringModel() | ||
trainer = Trainer(limit_val_batches=100, limit_train_batches=100, max_epochs=1, default_root_dir=tmpdir) | ||
trainer.fit(model) | ||
|
||
assert len(model.train_dataloader()) == 64 | ||
assert len(model.val_dataloader()) == 64 | ||
assert isinstance(trainer.num_val_batches, list) | ||
assert trainer.num_val_batches[0] == 64 | ||
assert trainer.num_training_batches == 64 | ||
|
||
# when we have more batches in the dataloader we should limit them | ||
model = BoringModel() | ||
trainer = Trainer(limit_val_batches=7, limit_train_batches=7, max_epochs=1, default_root_dir=tmpdir) | ||
trainer.fit(model) | ||
|
||
assert len(model.train_dataloader()) == 64 | ||
assert len(model.val_dataloader()) == 64 | ||
assert isinstance(trainer.num_val_batches, list) | ||
assert trainer.num_val_batches[0] == 7 | ||
assert trainer.num_training_batches == 7 | ||
|
||
|
||
@pytest.mark.parametrize( | ||
["stage", "mode"], | ||
[ | ||
(RunningStage.VALIDATING, "val"), | ||
(RunningStage.TESTING, "test"), | ||
(RunningStage.PREDICTING, "predict"), | ||
], | ||
) | ||
def test_eval_limit_batches(stage, mode): | ||
limit_eval_batches = f"limit_{mode}_batches" | ||
dl_hook = f"{mode}_dataloader" | ||
model = BoringModel() | ||
eval_loader = getattr(model, dl_hook)() | ||
|
||
limit_batches = 0.1 | ||
rohitgr7 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
trainer = Trainer(**{limit_eval_batches: limit_batches}) | ||
model.trainer = trainer | ||
trainer._data_connector.attach_dataloaders(model) | ||
loader_num_batches, dataloaders = trainer._reset_eval_dataloader(stage, model=model) | ||
assert loader_num_batches[0] == int(limit_batches * len(eval_loader)) | ||
assert len(dataloaders[0]) == len(eval_loader) | ||
|
||
limit_batches = 10 | ||
trainer = Trainer(**{limit_eval_batches: limit_batches}) | ||
model.trainer = trainer | ||
trainer._data_connector.attach_dataloaders(model) | ||
loader_num_batches, dataloaders = trainer._reset_eval_dataloader(stage, model=model) | ||
assert loader_num_batches[0] == limit_batches | ||
assert len(dataloaders[0]) == len(eval_loader) |
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
Oops, something went wrong.
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.