Albumentations >= 1.0.3 (#4068)

pull/4069/head
Glenn Jocher 2021-07-19 13:23:19 +02:00 committed by GitHub
parent ee76a68f1d
commit 7fdcc77bf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

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

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),