2

我一直在关注“Tensorflow on Android”的github存储库。Inception5h vs Inception V4,什么是5h

link,显示所有的初始模型,但不是先验5h。 用于在github tensorflow演示应用程序使用inception5h,如图here

new_http_archive(
     name = "inception5h", 
     build_file = "models.BUILD", 
     url = "https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip", 
     sha256 = "d13569f6a98159de37e92e9c8ec4dae8f674fbf475f69fe6199b514f756d4364" 
    ) 

请解释

1.为什么它是inception5h,而不是inceptionV5

2.为什么是以上5h未在上面的型号链接中列出?

回答

2

初始5h等同于先验V1。这只是有点困惑我们在什么版本发布的东西:)

+0

我[再培训](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/image_retraining/ retrain.py)和[优化初始](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/tools/optimize_for_inference.py)开始V3。再培训APK的推理时间为1200〜2000ms,初始5H模型为200〜400ms。在我的再培训APK中,是否有可能获得类似的推理时间,初始值为V3? –

+0

Andrew Harp 感谢有关InceptionV5的信息。我已经尝试重新训练/微调[inceptionV1](https://github.com/tensorflow/models/blob/master/slim/scripts/finetune_inception_v1_on_flowers.sh)苗条的模型,并面临[这个问题](http:// stackoverflow .com/questions/43647446/no-operation-named-input-in-the-graph-error-while-fine-tuning-retraining-ince)请帮助我。 –