为什么DeepLabv3 +中的predict_labels()中没有softmax?

时间:2019-01-15 23:42:29

标签: tensorflow deeplab

功能上

def predict_labels(images, model_options, image_pyramid=None)

来自model.py,我们有:

predictions[output] = tf.argmax(logits, 3)

https://github.com/tensorflow/models/blob/1c99681ed94495f446399e247a8d63e07f28391c/research/deeplab/model.py#L191

我期望像这样:

predictions[output] = tf.argmax(tf.nn.softmax(logits), 3)

那么为什么那里没有softmax?

0 个答案:

没有答案