Update `albumentations>=1.0.2` (#3966)

This commit is contained in:
Glenn Jocher 2021-07-11 15:49:30 +02:00 committed by GitHub
parent 80299a57e2
commit 8298ce5e88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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