소스 검색

Add tqdm pbar.close() (#2644)

When using tqdm, sometimes it can't print in one line and roll to next line.
5.0
zzttqu GitHub 3 년 전
부모
커밋
1e8ab3f5f2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. +4
    -2
      utils/datasets.py

+ 4
- 2
utils/datasets.py 파일 보기

@@ -443,7 +443,8 @@ class LoadImagesAndLabels(Dataset): # for training/testing
self.imgs[i], self.img_hw0[i], self.img_hw[i] = x # img, hw_original, hw_resized = load_image(self, i)
gb += self.imgs[i].nbytes
pbar.desc = f'{prefix}Caching images ({gb / 1E9:.1f}GB)'

pbar.close()
def cache_labels(self, path=Path('./labels.cache'), prefix=''):
# Cache dataset labels, check images and read shapes
x = {} # dict
@@ -487,7 +488,8 @@ class LoadImagesAndLabels(Dataset): # for training/testing

pbar.desc = f"{prefix}Scanning '{path.parent / path.stem}' images and labels... " \
f"{nf} found, {nm} missing, {ne} empty, {nc} corrupted"

pbar.close()
if nf == 0:
print(f'{prefix}WARNING: No labels found in {path}. See {help_url}')


Loading…
취소
저장