From f8aab0e95201e5934b299caa127b767bd10f1d75 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Tue, 8 Oct 2019 15:19:13 +0200 Subject: [PATCH] updates --- utils/datasets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/datasets.py b/utils/datasets.py index 2454dea9..3f88635d 100755 --- a/utils/datasets.py +++ b/utils/datasets.py @@ -405,7 +405,7 @@ class LoadImagesAndLabels(Dataset): # for training/testing img_path = self.img_files[index] label_path = self.label_files[index] - mosaic = True and not self.augment # load 4 images at a time into a mosaic (only during training) + mosaic = True and self.augment # load 4 images at a time into a mosaic (only during training) if mosaic: # Load mosaic img, labels = load_mosaic(self, index)