分类目录:《深入浅出Pytorch函数》总目录
相关文章:
· 深入浅出TensorFlow2函数——tf.exp
· 深入浅出TensorFlow2函数——tf.math.exp
· 深入浅出Pytorch函数——torch.exp
· 深入浅出PaddlePaddle函数——paddle.exp
对输入input
逐元素进行以自然数
e
e
e为底指数运算。文章来源:https://www.toymoban.com/news/detail-504113.html
语法
torch.exp(input, *, out=None) → Tensor
参数
-
input
:[Tensor
] 输入的向量。 -
out
:[可选,Tensor
] 输出的向量。
返回值
与x
维度相同、数据类型相同的Tensor
。文章来源地址https://www.toymoban.com/news/detail-504113.html
实例
import paddle
>>> torch.exp(torch.tensor([0, math.log(2.)]))
tensor([ 1., 2.])
到了这里,关于深入浅出Pytorch函数——torch.exp的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!