我爱编程

TensorFlow学习笔记1.9:tf.nn.softmax(

2018-04-14  本文已影响9683人  HBU_DAVID
tf.nn.softmax(
    logits,
    axis=None,
    name=None,
    dim=None
)

Computes softmax activations. (deprecated arguments)
计算softmax激活。(有弃用的参数)
SOME ARGUMENTS ARE DEPRECATED.
一些参数被弃用
They will be removed in a future version.
它们将在未来的版本中被删除
Instructions for updating: dim is deprecated, use axis instead
更新说明:dim被弃用,用axis代替
This function performs the equivalent of
这个函数的作用相当于:

softmax = tf.exp(logits) / tf.reduce_sum(tf.exp(logits), axis)
上一篇下一篇

猜你喜欢

热点阅读