pytorch中Math operation操作:torch.ger()
Posted qinduanyinghua
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytorch中Math operation操作:torch.ger()相关的知识,希望对你有一定的参考价值。
torch.
ger
(vec1, vec2, out=None) → Tensor
Outer product of vec1
and vec2
. If vec1
is a vector of size nn and vec2
is a vector of size mm, then out
must be a matrix of size (n×m).
Parameters: |
---|
Example:
>>> v1 = torch.arange(1., 5.)
>>> v2 = torch.arange(1., 4.)
>>> torch.ger(v1, v2)
tensor([[ 1., 2., 3.],
[ 2., 4., 6.],
[ 3., 6., 9.],
[ 4., 8., 12.]])
从例子以及描述可知,这是一个向量间外积的操作。
以上是关于pytorch中Math operation操作:torch.ger()的主要内容,如果未能解决你的问题,请参考以下文章
Math operator in a Shell Script
java Operator ‘/‘ cannot be applied to ‘java.math.BigInteger‘, ‘int‘
talib 中文文档(十五):Math Operator Functions 数学方法