Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
4d312e66
F
FluidDoc
项目概览
PaddlePaddle
/
FluidDoc
通知
5
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
23
列表
看板
标记
里程碑
合并请求
111
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
F
FluidDoc
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
23
Issue
23
列表
看板
标记
里程碑
合并请求
111
合并请求
111
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
4d312e66
编写于
7月 17, 2020
作者:
L
LutaoChu
提交者:
GitHub
7月 17, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix cross op doc for API2.0, test=develop, test=document_fix (#2287)
fix cross op doc for API2.0
上级
03b44eb2
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
36 addition
and
24 deletion
+36
-24
doc/fluid/api/tensor.rst
doc/fluid/api/tensor.rst
+1
-0
doc/fluid/api/tensor/cross.rst
doc/fluid/api/tensor/cross.rst
+7
-0
doc/fluid/api_cn/tensor_cn/cross_cn.rst
doc/fluid/api_cn/tensor_cn/cross_cn.rst
+28
-24
未找到文件。
doc/fluid/api/tensor.rst
浏览文件 @
4d312e66
...
...
@@ -20,6 +20,7 @@ paddle.tensor
tensor/cos.rst
tensor/create_tensor.rst
tensor/crop_tensor.rst
tensor/cross.rst
tensor/cumsum.rst
tensor/diag.rst
tensor/div.rst
...
...
doc/fluid/api/tensor/cross.rst
0 → 100644
浏览文件 @
4d312e66
.. _api_tensor_cn_cos:
cross
-------------------------------
:doc_source: paddle.tensor.cross
doc/fluid/api_cn/tensor_cn/cross_cn.rst
浏览文件 @
4d312e66
...
...
@@ -3,51 +3,55 @@
cross
-------------------------------
.. py:function:: paddle.cross(
input, other, dim
=None)
.. py:function:: paddle.cross(
x, y, axis=None, name
=None)
:alias_main: paddle.cross
:alias: paddle.cross,paddle.tensor.cross,paddle.tensor.linalg.cross
该OP返回在 ``dim`` 维度上,两个张量 ``input`` 和 ``other`` 的向量积(叉积)。 ``input`` 和 ``other
`` 必须有相同的形状,
且指定的 ``
dim`` 维上 ``size`` 必须为3,如果 ``dim`` 未指定,默认选取第一个 ``size`` 等于3的维度。
计算张量 ``x`` 和 ``y`` 在 ``axis`` 维度上的向量积(叉积)。 ``x`` 和 ``y
`` 必须有相同的形状,
且指定的 ``
axis`` 的长度必须为3. 如果未指定 ``axis`` ,默认选取第一个长度为3的 ``axis`` .
**参数**:
- **input** (Variable)– 第一个输入张量。
- **other** (Variable)– 第二个输入张量。
- **dim** (int, optional) – 沿着此维进行叉积操作,若未指定,则默认选取第一个 ``size`` 等于3的维度
- **x** (Variable)– 第一个输入张量。
- **y** (Variable)– 第二个输入张量。
- **axis** (int, optional) – 沿着此维进行向量积操作。默认选取第一个长度为3的 ``axis`` .
- **name** (str,可选)- 输出的名字。默认值为None。该参数供开发人员打印调试信息时使用,具体用法请参见 :ref:`api_guide_Name` 。
**返回**:向量积的结果。
**返回类型**:Variable
**返回**:
- **Variable** ,数据类型同输入。
**代码示例**:
.. code-block:: python
import paddle
import paddle.fluid as fluid
from paddle.imperative import to_variable
import numpy as np
paddle.enable_imperative()
data_x = np.array([[1.0, 1.0, 1.0],
[2.0, 2.0, 2.0],
[3.0, 3.0, 3.0]])
data_y = np.array([[1.0, 1.0, 1.0],
[1.0, 1.0, 1.0],
[1.0, 1.0, 1.0]])
with fluid.dygraph.guard():
x = fluid.dygraph.to_variable(data_x)
y = fluid.dygraph.to_variable(data_
y)
out_z1 = paddle.cross(x, y
)
print(out_z1.numpy())
#[[-1. -1. -1
.]
# [ 2. 2. 2.
]
# [-1. -1. -1.]]
out_z2 = paddle.cross(x, y, dim
=1)
print(out_
z2.numpy())
#
[[0. 0. 0.]
#
[0. 0. 0.]
#
[0. 0. 0.]]
x = to_variable(data_x)
y = to_variable(data_y)
z1 = paddle.cross(x,
y)
print(z1.numpy()
)
# [[-1. -1. -1.]
# [ 2. 2. 2
.]
# [-1. -1. -1.]
]
z2 = paddle.cross(x, y, axis
=1)
print(
z2.numpy())
#
[[0. 0. 0.]
#
[0. 0. 0.]
#
[0. 0. 0.]]
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录