Skip to content

Commit

Permalink
Albumentations >= 1.0.3 (ultralytics#4068)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Jul 19, 2021
1 parent b156f81 commit 41bb1a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion utils/augmentations.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self):
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),
Expand Down

0 comments on commit 41bb1a5

Please sign in to comment.