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 086a9a41fa6697bca3eebbe486b3a14a422e9edb..0e998cb44e20819ee037d60bae01ebaaf2ac410d 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 4d67aea9acd1c49738242040d25e3a6b69bb3529..04c6e58361d0b05ad085a27027f25ecf08db105f 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。