Почему нет softmax в предикате предиката () в DeepLabv3+?
В функции
def predict_labels(images, model_options, image_pyramid=None)
из model.py мы имеем:
predictions[output] = tf.argmax(logits, 3)
Я ожидал что-то вроде:
predictions[output] = tf.argmax(tf.nn.softmax(logits), 3)
Так почему там нет софтмакса?