分类目录:《深入浅出PaddlePaddle函数》总目录
相关文章:
· 深入浅出TensorFlow2函数——tf.exp
· 深入浅出TensorFlow2函数——tf.math.exp
· 深入浅出Pytorch函数——torch.exp
· 深入浅出PaddlePaddle函数——paddle.exp
对输入 x x x逐元素进行以自然数 e e e为底指数运算。文章来源:https://www.toymoban.com/news/detail-520625.html
语法
paddle.exp(x, name=None)
参数
-
x
:[Tensor
] 该OP的输入为多维Tensor
。数据类型为float32
、float64
。 -
name
:[可选,str
] 具体用法请参见Name
,一般无需设置,默认值为None
。
返回值
与x
维度相同、数据类型相同的Tensor
。文章来源地址https://www.toymoban.com/news/detail-520625.html
实例
import paddle
x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
out = paddle.exp(x)
print(out)
# [0.67032005 0.81873075 1.10517092 1.34985881]
到了这里,关于深入浅出PaddlePaddle函数——paddle.exp的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!