Does the Inception Model have two softmax outputs?

前端 未结 1 1288
故里飘歌
故里飘歌 2021-01-06 01:25

The Inception v3 model is shown in this image:

\"Incept

相关标签:
1条回答
  • 2021-01-06 02:10

    Section 4 of the paper you cite is about auxiliary classifiers. These are classifiers added to the lower levels of the network, that improve training by mitigating the vanishing gradients problem and speedup convergence. For running inference on a trained network, you should use the main classifier, called softmax:0 in the model, and NOT the auxiliary classifier, called auxiliary_softmax:0.

    0 讨论(0)
提交回复
热议问题