tensorflow tanh应用

Posted debuggor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tensorflow tanh应用相关的知识,希望对你有一定的参考价值。

1、tanh()函数

tanh是双曲函数中的一个,tanh()为双曲正切。

 

双曲正切函数的导数公式:
 

 

2、tensorflow tanh()例子

import tensorflow as tf

input=tf.constant([1,2,3,4],dtype=tf.float32)
#在tensorflow1.2中tf.nn.tanh和tf.tanh都可以
#output=tf.nn.tanh(input)
output=tf.tanh(input)
with tf.Session() as sess:
    print(sess.run(output))
    sess.close()

输出结果:

[ 0.76159418  0.96402758  0.99505472  0.99932921]

以上是关于tensorflow tanh应用的主要内容,如果未能解决你的问题,请参考以下文章

TensorFlow 神经网络相关函数

tensorflow学习-------激活函数(activation function)

tensorflow中卷积层输出特征尺寸计算和padding参数解析

PyTorch学习笔记:nn.Tanh——Tanh激活函数

Tensorflow中神经网络的激活函数

TensorFlow:递归神经网络(RNN与LSTM)