Update cache check (#3691)
Browse filesSwapped order of operations for faster first per https://github.com/ultralytics/yolov5/commit/f527704cd32c42bc0bba9cce04601783b8563204#r52362419
- utils/datasets.py +1 -1
utils/datasets.py
CHANGED
@@ -390,7 +390,7 @@ class LoadImagesAndLabels(Dataset): # for training/testing
|
|
390 |
cache_path = (p if p.is_file() else Path(self.label_files[0]).parent).with_suffix('.cache') # cached labels
|
391 |
if cache_path.is_file():
|
392 |
cache, exists = torch.load(cache_path), True # load
|
393 |
-
if cache['hash'] != get_hash(self.label_files + self.img_files)
|
394 |
cache, exists = self.cache_labels(cache_path, prefix), False # re-cache
|
395 |
else:
|
396 |
cache, exists = self.cache_labels(cache_path, prefix), False # cache
|
|
|
390 |
cache_path = (p if p.is_file() else Path(self.label_files[0]).parent).with_suffix('.cache') # cached labels
|
391 |
if cache_path.is_file():
|
392 |
cache, exists = torch.load(cache_path), True # load
|
393 |
+
if cache['version'] != 0.3 or cache['hash'] != get_hash(self.label_files + self.img_files):
|
394 |
cache, exists = self.cache_labels(cache_path, prefix), False # re-cache
|
395 |
else:
|
396 |
cache, exists = self.cache_labels(cache_path, prefix), False # cache
|