Update augment in validator (#3943)
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
parent
0c20a1d18d
commit
4329269c4e
1 changed files with 2 additions and 1 deletions
|
|
@ -95,6 +95,7 @@ class BaseValidator:
|
|||
if trainer is passed (trainer gets priority).
|
||||
"""
|
||||
self.training = trainer is not None
|
||||
augment = self.args.augment and (not self.training)
|
||||
if self.training:
|
||||
self.device = trainer.device
|
||||
self.data = trainer.data
|
||||
|
|
@ -159,7 +160,7 @@ class BaseValidator:
|
|||
|
||||
# Inference
|
||||
with dt[1]:
|
||||
preds = model(batch['img'], augment=self.args.augment)
|
||||
preds = model(batch['img'], augment=augment)
|
||||
|
||||
# Loss
|
||||
with dt[2]:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue