Ver código fonte
Fix missing labels after albumentations (#4455)
* fix missing labels after augmentation
* Update datasets.py
Cleanup
Co-authored-by: Huu Quan <huuquan@HuuQuans-MacBook.local>
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
modifyDataloader
Huu Quan, CAP
GitHub
3 anos atrás
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados
ID da chave GPG: 4AEE18F83AFDEB23
1 arquivos alterados com
1 adições e
0 exclusões
-
utils/datasets.py
|
|
@@ -568,6 +568,7 @@ class LoadImagesAndLabels(Dataset): # for training/testing |
|
|
|
if self.augment: |
|
|
|
# Albumentations |
|
|
|
img, labels = self.albumentations(img, labels) |
|
|
|
nl = len(labels) # update after albumentations |
|
|
|
|
|
|
|
# HSV color-space |
|
|
|
augment_hsv(img, hgain=hyp['hsv_h'], sgain=hyp['hsv_s'], vgain=hyp['hsv_v']) |