Using inception v4 in retrain example
I'm working through the same thing currently.
Try to add :0
to the end of your bottleneck_tensor_name
and your resized_input_tensor_name
.
If you'll notice in retrain.py
, Google also uses this :0
nomenclature.
My suspicion is that, for you, InceptionV4/Logits/Logits/MatMul
is just an operation, which you're not trying to get for this script, while InceptionV4/Logits/Logits/MatMul:0
is the first tensor instantiated from that operation, which you are trying to get for this script.