!9343 add white space after comma

From: @zhaozhenlong
Reviewed-by: @c_34,@liangchenghui
Signed-off-by: @c_34
This commit is contained in:
mindspore-ci-bot 2020-12-03 11:32:50 +08:00 committed by Gitee
commit 9b21b3ffc3
2 changed files with 6 additions and 6 deletions

View File

@ -530,7 +530,7 @@ class Pad(Cell):
>>> class Net(nn.Cell):
... def __init__(self):
... super(Net, self).__init__()
... self.pad = nn.Pad(paddings=((1,1),(2,2)), mode="CONSTANT")
... self.pad = nn.Pad(paddings=((1, 1), (2, 2)), mode="CONSTANT")
... def construct(self, x):
... return self.pad(x)
>>> x = np.random.random(size=(2, 3)).astype(np.float32)

View File

@ -55,7 +55,7 @@ class ImageGradients(Cell):
Examples:
>>> net = nn.ImageGradients()
>>> image = Tensor(np.array([[[[1,2],[3,4]]]]), dtype=mindspore.int32)
>>> image = Tensor(np.array([[[[1, 2], [3, 4]]]]), dtype=mindspore.int32)
>>> output = net(image)
>>> print(output)
(Tensor(shape=[1, 1, 2, 2], dtype=Int32, value=
@ -219,8 +219,8 @@ class SSIM(Cell):
Examples:
>>> net = nn.SSIM()
>>> img1 = Tensor(np.random.random((1,3,16,16)), mindspore.float32)
>>> img2 = Tensor(np.random.random((1,3,16,16)), mindspore.float32)
>>> img1 = Tensor(np.random.random((1, 3, 16, 16)), mindspore.float32)
>>> img2 = Tensor(np.random.random((1, 3, 16, 16)), mindspore.float32)
>>> output = net(img1, img2)
>>> print(output)
[0.12174469]
@ -394,8 +394,8 @@ class PSNR(Cell):
Examples:
>>> net = nn.PSNR()
>>> img1 = Tensor(np.random.random((1,3,16,16)))
>>> img2 = Tensor(np.random.random((1,3,16,16)))
>>> img1 = Tensor(np.random.random((1, 3, 16, 16)))
>>> img2 = Tensor(np.random.random((1, 3, 16, 16)))
>>> output = net(img1, img2)
>>> print(output)
[7.915369]