mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-10 12:21:57 +08:00
enable fast_dev_run without a validation loop (#1779)
* fix val dataloader * Update evaluation_loop.py
This commit is contained in:
@@ -360,6 +360,10 @@ class TrainerEvaluationLoopMixin(ABC):
|
||||
dataloaders = self.val_dataloaders
|
||||
max_batches = self.num_val_batches
|
||||
|
||||
# enable fast_dev_run without val loop
|
||||
if dataloaders is None:
|
||||
return
|
||||
|
||||
# cap max batches to 1 when using fast_dev_run
|
||||
if self.fast_dev_run:
|
||||
max_batches = 1
|
||||
|
||||
Reference in New Issue
Block a user