当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.keras.activations.exponential用法及代码示例


index 激活函数。

用法

tf.keras.activations.exponential(
    x
)

参数

  • x 输入张量。

返回

  • 具有 index 激活的张量:exp(x)

例如:

a = tf.constant([-3.0,-1.0, 0.0,1.0,3.0], dtype = tf.float32)
b = tf.keras.activations.exponential(a)
b.numpy()
array([0.04978707,  0.36787945,  1.,  2.7182817 , 20.085537], dtype=float32)

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.keras.activations.exponential。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。