I am trying to use tensorflow for transfer learning. I downloaded the pre-trained model inception3 from the tutorial. In the code, for prediction:
prediction = sess.run(softmax_tensor,{'DecodeJpeg/contents:0'}:image_data})
Is there a way to feed the png image. I tried changing DecodeJpeg to DecodePng but it did not work. Beside, what should I change if I want to feed decoded image file like a numpy array or a batch of arrays?
Thanks!!