Browse Source

Albumentations >= 1.0.3 (#4068)

modifyDataloader
Glenn Jocher GitHub 3 years ago
parent
commit
7fdcc77bf4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      requirements.txt
  2. +1
    -1
      utils/augmentations.py

+ 1
- 1
requirements.txt View File

@@ -27,5 +27,5 @@ pandas
# extras --------------------------------------
# Cython # for pycocotools https://github.com/cocodataset/cocoapi/issues/172
# pycocotools>=2.0 # COCO mAP
# albumentations>=1.0.2
# albumentations>=1.0.3
thop # FLOPs computation

+ 1
- 1
utils/augmentations.py View File

@@ -17,7 +17,7 @@ class Albumentations:
self.transform = None
try:
import albumentations as A
check_version(A.__version__, '1.0.2') # version requirement
check_version(A.__version__, '1.0.3') # version requirement

self.transform = A.Compose([
A.Blur(p=0.1),

Loading…
Cancel
Save