From f9e416e73643e56f5e97648b9811c3fc4c04e016 Mon Sep 17 00:00:00 2001 From: Chen Weihang Date: Wed, 13 May 2020 13:05:29 +0800 Subject: [PATCH] fix sequence api detail error (#2092) --- doc/fluid/api_cn/layers_cn/sequence_scatter_cn.rst | 2 +- doc/fluid/api_cn/layers_cn/sequence_slice_cn.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/fluid/api_cn/layers_cn/sequence_scatter_cn.rst b/doc/fluid/api_cn/layers_cn/sequence_scatter_cn.rst index 086a9a41f..0e998cb44 100644 --- a/doc/fluid/api_cn/layers_cn/sequence_scatter_cn.rst +++ b/doc/fluid/api_cn/layers_cn/sequence_scatter_cn.rst @@ -45,7 +45,7 @@ output[i][j]的值取决于能否在index中第i+1个区间中找到对应的数 参数: - **input** (Variable) - 维度为 :math:`[N, k_1 ... k_n]` 的Tensor, 支持的数据类型:float32,float64,int32,int64。 - - **index** (Variable) - 包含index信息的LoDTensor,lod level必须等于1,支持的数据类型:int64。 + - **index** (Variable) - 包含index信息的LoDTensor,lod level必须等于1,支持的数据类型:int32,int64。 - **updates** (Variable) - 包含updates信息的LoDTensor,lod level和index一致,数据类型与input的数据类型一致。支持的数据类型:float32,float64,int32,int64。 - **name** (str,可选) – 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为None。 diff --git a/doc/fluid/api_cn/layers_cn/sequence_slice_cn.rst b/doc/fluid/api_cn/layers_cn/sequence_slice_cn.rst index 4d67aea9a..04c6e5836 100644 --- a/doc/fluid/api_cn/layers_cn/sequence_slice_cn.rst +++ b/doc/fluid/api_cn/layers_cn/sequence_slice_cn.rst @@ -36,7 +36,7 @@ sequence_slice ``offset`` 从0开始。 参数: - - **input** (Variable) – 输入变量,类型为LoDTensor,承载着完整的序列 + - **input** (Variable) – 输入变量,类型为LoDTensor,承载着完整的序列。数据类型为float32,float64,int32或int64。 - **offset** (Variable) – 指定每个序列切片的起始索引,数据类型为int32或int64。 - **length** (Variable) – 指定每个子序列的长度,数据类型为int32或int64。 - **name** (str,可选) – 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为None。 -- GitLab