在功能
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)
那么为什么没有softmax呢?
在功能
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)
那么为什么没有softmax呢?