glenn-jocher commited on
Commit
814806c
·
unverified ·
1 Parent(s): 463628a

Update cache check (#3691)

Browse files

Swapped order of operations for faster first per https://github.com/ultralytics/yolov5/commit/f527704cd32c42bc0bba9cce04601783b8563204#r52362419

Files changed (1) hide show
  1. 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) or cache['version'] != 0.3:
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