Update `albumentations>=1.0.2` (#3966)
Browse files- utils/augmentations.py +1 -1
utils/augmentations.py
CHANGED
@@ -17,7 +17,7 @@ class Albumentations:
|
|
17 |
self.transform = None
|
18 |
try:
|
19 |
import albumentations as A
|
20 |
-
check_version(A.__version__, '1.0.
|
21 |
|
22 |
self.transform = A.Compose([
|
23 |
A.Blur(p=0.1),
|
|
|
17 |
self.transform = None
|
18 |
try:
|
19 |
import albumentations as A
|
20 |
+
check_version(A.__version__, '1.0.2') # version requirement
|
21 |
|
22 |
self.transform = A.Compose([
|
23 |
A.Blur(p=0.1),
|