我想建立一个神经网络,我问自己这两个功能之间是否有区别?
tf.nn.tanh和tf.tanh
最佳答案
不,没有区别。
在tensorflow/tensorflow/python/ops/nn.py
文件(定义tf.nn
的位置)中,我们可以找到tanh
的定义:
from tensorflow.python.ops.math_ops import tanh
还有,这是
TODO
here# TODO(cwhipkey): sigmoid and tanh should not be exposed from tf.nn.
因此,tanh可能会从
tf.nn
包中删除。因此,
tf.tanh
(已定义为here)是要使用的那个。关于machine-learning - tensorflow 中的激活功能之间有区别吗? tf.nn.tanh和tf.tanh,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44949292/