diff --git a/docs/api/paddle/expand_cn.rst b/docs/api/paddle/expand_cn.rst index b43411d6aab..8e4cf47615f 100644 --- a/docs/api/paddle/expand_cn.rst +++ b/docs/api/paddle/expand_cn.rst @@ -9,6 +9,12 @@ expand ``x`` 的维数和 ``shape`` 的元素数应小于等于 6,并且 ``shape`` 中的元素数应该大于等于 ``x`` 的维数。扩展的维度的维度值应该为 1。 +下图展示了一个 expand 的情形——一个形状为[1,2,3]的,值为[[1, 2, 5], [3, 0, 4]]的三维张量通过 expand 操作转变为形状为[2,2,3]的三维张量。通过比较,可以清晰地看到张量形状变化前后各元素的对应关系。 + +.. image:: ../../images/api_legend/expand.png + :width: 600 + :alt: 图例 + 参数 ::::::::: - **x** (Tensor) - 输入的 Tensor,数据类型为:bool、float16、float32、float64、int32、int64、uint8 或 uint16。 diff --git a/docs/images/api_legend/expand.png b/docs/images/api_legend/expand.png new file mode 100644 index 00000000000..3cc18f320e5 Binary files /dev/null and b/docs/images/api_legend/expand.png differ