Browse Source

fix numpy docstring problem

tags/v0.6.0-beta
xiefangqi 5 years ago
parent
commit
194f73132e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mindspore/dataset/transforms/c_transforms.py

+ 2
- 2
mindspore/dataset/transforms/c_transforms.py View File

@@ -201,8 +201,8 @@ class Concatenate(cde.ConcatenateOp):

Args:
axis (int, optional): axis to concatenate the tensors along (Default=0).
prepend (np.array, optional): numpy array to be prepended to the already concatenated tensors (Default=None).
append (np.array, optional): numpy array to be appended to the already concatenated tensors (Default=None).
prepend (numpy.array, optional): numpy array to be prepended to the already concatenated tensors (Default=None).
append (numpy.array, optional): numpy array to be appended to the already concatenated tensors (Default=None).
"""

@check_concat_type


Loading…
Cancel
Save