pytorch中Math operation操作:torch.ger()

Posted qinduanyinghua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytorch中Math operation操作:torch.ger()相关的知识,希望对你有一定的参考价值。

torch.ger(vec1vec2out=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:
  • vec1 (Tensor) – 1-D input vector
  • vec2 (Tensor) – 1-D input vector
  • out (Tensoroptional) – optional output matrix

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 数学方法

pytorch 导数在 .grad 上不返回任何结果

无法在 NodeMCU/ESP8266 中使用 math.pow 函数

pytorch版本的bert模型代码