提交 8e36a445 编写于 作者: M mindspore-ci-bot 提交者: Gitee

!1399 dataset: repair parameter problem in Uniform augmentation

Merge pull request !1399 from ms_yan/ua_aug_check
......@@ -452,11 +452,11 @@ class Pad(cde.PadOp):
class UniformAugment(cde.UniformAugOp):
"""
Tensor operation to perform randomly selected augmentation
Tensor operation to perform randomly selected augmentation.
Args:
operations: list of C++ operations (python OPs are not accepted).
NumOps (int): number of OPs to be selected and applied.
num_ops (int): number of OPs to be selected and applied.
Examples:
>>> transforms_list = [c_transforms.RandomHorizontalFlip(),
......
......@@ -23,6 +23,7 @@ from .utils import Inter, Border
from ...transforms.validators import check_pos_int32, check_pos_float32, check_value, check_uint8, FLOAT_MAX_INTEGER, \
check_bool, check_2tuple, check_range, check_list, check_type, check_positive, INT32_MAX
def check_inter_mode(mode):
if not isinstance(mode, Inter):
raise ValueError("Invalid interpolation mode.")
......@@ -838,7 +839,7 @@ def check_uniform_augmentation(method):
if num_ops > len(operations):
raise ValueError("num_ops is greater than operations list size")
if not isinstance(operations, list):
raise ValueError("operations is not a python list")
raise TypeError("operations is not a python list")
for op in operations:
if not isinstance(op, TensorOp):
raise ValueError("operations list only accepts C++ operations.")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册