From 303947a267c5719fc604f1033fdcf5994b7282dd Mon Sep 17 00:00:00 2001 From: yinhaofeng <66763551+yinhaofeng@users.noreply.github.com> Date: Tue, 1 Sep 2020 15:09:51 +0800 Subject: [PATCH] delete wrong message test=develop, test=document_fix (#2466) --- doc/fluid/api_cn/layers_cn/slice_cn.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) mode change 100644 => 100755 doc/fluid/api_cn/layers_cn/slice_cn.rst diff --git a/doc/fluid/api_cn/layers_cn/slice_cn.rst b/doc/fluid/api_cn/layers_cn/slice_cn.rst old mode 100644 new mode 100755 index ed77cc949..4c2214100 --- a/doc/fluid/api_cn/layers_cn/slice_cn.rst +++ b/doc/fluid/api_cn/layers_cn/slice_cn.rst @@ -34,7 +34,7 @@ slice 参数: - **input** (Variable)- 多维 ``Tensor`` 或 ``LoDTensor``,数据类型为 ``float16``, ``float32``,``float64``,``int32``,或 ``int64``。 - - **axes** (list|tuple)- 数据类型是 ``int32``。表示进行切片的轴。它是可选的,如果不存在,将被视为 :math:`[0,1,...,len(starts)- 1]`。 + - **axes** (list|tuple)- 数据类型是 ``int32``。表示进行切片的轴。 - **starts** (list|tuple|Variable)- 数据类型是 ``int32``。如果 ``starts`` 的类型是 list 或 tuple,它的元素可以是整数或者形状为[1]的 ``Tensor`` 或 ``LoDTensor``。如果 ``starts`` 的类型是 ``Variable``,则是1-D ``Tensor`` 或 ``LoDTensor``。表示在各个轴上切片的起始索引值。 - **ends** (list|tuple|Variable)- 数据类型是 ``int32``。如果 ``ends`` 的类型是 list 或 tuple,它的元素可以是整数或者形状为[1]的 ``Tensor`` 或 ``LoDTensor``。如果 ``ends`` 的类型是 ``Variable``,则是1-D ``Tensor`` 或 ``LoDTensor``。表示在各个轴上切片的结束索引值。 @@ -45,7 +45,6 @@ slice 抛出异常: - :code:`TypeError`:``starts`` 的类型应该是 list、tuple 或 Variable。 - :code:`TypeError`:``ends`` 的类型应该是 list、tuple 或 Variable。 - **代码示例:** .. code-block:: python -- GitLab