diff --git a/docs/api/paddle/expand_as_cn.rst b/docs/api/paddle/expand_as_cn.rst index 8e772e47df9..ff0939c5ef7 100644 --- a/docs/api/paddle/expand_as_cn.rst +++ b/docs/api/paddle/expand_as_cn.rst @@ -9,6 +9,12 @@ expand_as ``x`` 的维数和 ``y`` 的维数应小于等于 6,并且 ``y`` 的维数应该大于等于 ``x`` 的维数。扩展的维度的维度值应该为 1。 +下图展示了一个一维张量通过 expand_as 操作转变为形状为[2,3]的张量。目标张量的形状为[2,3],通过 expand_as,一维张量扩展成形状为[2,3]的张量。 + +.. image:: ../../images/api_legend/expand_as.png + :width: 500 + :alt: 图例 + 参数 ::::::::: - **x** (Tensor) - 输入的 Tensor,数据类型为:bool、float32、float64、int32 或 int64。 diff --git a/docs/images/api_legend/expand_as.png b/docs/images/api_legend/expand_as.png new file mode 100644 index 00000000000..c0a8c2285bf Binary files /dev/null and b/docs/images/api_legend/expand_as.png differ