浏览代码

Albumentations >= 1.0.3 (#4068)

modifyDataloader
Glenn Jocher GitHub 3 年前
父节点
当前提交
7fdcc77bf4
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      requirements.txt
  2. +1
    -1
      utils/augmentations.py

+ 1
- 1
requirements.txt 查看文件

@@ -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 查看文件

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

正在加载...
取消
保存