Eval Interval without a Validation Dataloader
See original GitHub issueI am using multiple datasets, some with validation dataloaders and some without.
When I pass None
for a validation dataloader but keep the rest of my Trainer
the same I get the error:
Specifying `eval_interval` without an `eval_dataloader` has no effect.
I have tried setting eval_dataloader
to 0
, None
but nothing seems to work…
Thanks, Trenton
Issue Analytics
- State:
- Created 9 months ago
- Comments:11 (6 by maintainers)
Top Results From Across the Web
Logging Intervals and Evaluation Intervals #3466 - GitHub
Before initializing the trainer, I've used the dataloader/dataset to calculate the number of batches per epoch, and then used ...
Read more >LightningModule - PyTorch Lightning - Read the Docs
Implement one or multiple PyTorch DataLoaders for validation. The dataloader you return will not be reloaded unless you set reload_dataloaders_every_n_epochs to ...
Read more >How to split dataset into test and validation sets
I have a dataset in which the different images are classified into different folders. I want to split the data to test, train,...
Read more >Training & evaluation with the built-in methods - Keras
This guide covers training, evaluation, and prediction (inference) models when using built-in APIs for training & validation (such as ...
Read more >Evaluation Settings — RecBole 1.1.1 documentation
Evaluation settings are designed to set parameters about model evaluation. ... the ratio of training set, validation set and testing set respectively.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
great! glad its working. Feel free to reach out if you hit any other issues
Ok in making a minimal repro I figured out that my tester script (rather than parallelized runner) hadn’t updated with the entry of “1”. Now things work. Sorry for the confusion.