Hi,
I followed "TensorFlow For Poets," https://codelabs.developers.google.com/codelabs/tensorflow-for-poets/#0, to trained an inception_v3 model with a customized dataset. When compiling the trained model by the command,
"mvNCCompile -s 12 retrained_graph.pb -in=input -on=InceptionV3/Predictions/Reshape_1", I got en error message like this,
The name 'input:0' refers to a Tensor which does not exist. The operation, 'input', does not exist in the graph.
Could anyone help me with this. Thank you.
Link Copied
Hi @chiu
mvNCCompile expects the input node to be named as 'input', but your network might have a different name. So, the placeholder is named incorrectly. You'll have to go back and rename it as input and then recompile.
Please let me know if this is helpful.
Best Regards,
Sahira
For more complete information about compiler optimizations, see our Optimization Notice.