Tensorflow Hub Inception V3 structure compared to Keras Inception V3 structure?

匿名 (未验证) 提交于 2019-12-03 01:42:02

问题:

I have been working Keras Inception V3. I believe the Keras model structure looks like the image below. But when I use the Inception V3 model from Tensorflow Hub, I think (but am not sure) that the TF-Hub Inception V3 model includes up until the Mixed7 output of IV3 (the 7th red "Concat" box), where Keras, in contrast, includes up to the Mixed10 output (10th red "Concat" box). Can someone confirm? (or deny!) the structure of the Tensorflow Hub Inception V3 Feature Vector model? Can someone tell me where to find Tensorflow Hub documentation showing images/diagrams of TF-Hub models to clarify?

回答1:

The naming conventions differ between Keras and SLIM, unfortunately. https://tfhub.dev/google/imagenet/inception_v3/feature_vector/1 was created from SLIM code and uses its naming conventions with numbers and letters, see http://github.com/tensorflow/models/blob/master/research/slim/nets/ (or explore the Hub module on TensorBoard while training, if you are using it).



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!