Skip to content

Commit

Permalink
[fix Typo] Fix the quotation mark format problem (#50882)
Browse files Browse the repository at this point in the history
Fix the quotation mark format problem in PixelShuffle document
  • Loading branch information
hua-zi authored Mar 6, 2023
1 parent 6b393e4 commit f1f2a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/paddle/nn/functional/vision.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def pixel_shuffle(x, upscale_factor, data_format="NCHW", name=None):
Parameters:
x(Tensor): 4-D tensor, the data type should be float32 or float64.
upscale_factor(int): factor to increase spatial resolution.
data_format (str, optional): The data format of the input and output data. An optional string from: ``'NCHW'``, ``'NHWC'``. When it is ``'NCHW'``, the data is stored in the order of: [batch_size, input_channels, input_height, input_width]. Default: ``'NCHW'``.
data_format (str, optional): The data format of the input and output data. An optional string from: ``"NCHW"``, ``"NHWC"``. When it is ``"NCHW"``, the data is stored in the order of: [batch_size, input_channels, input_height, input_width]. Default: ``"NCHW"``.
name (str, optional): Name for the operation (optional, default is None). For more information, please refer to :ref:`api_guide_Name`.
Returns:
Expand Down

0 comments on commit f1f2a25

Please sign in to comment.