Created
January 23, 2018 18:00
-
-
Save vincentchu/5f2f669aeb6df9864ec6c43252261269 to your computer and use it in GitHub Desktop.
first of all thanks for this git, it is very helpful ...
I have a question about what you did in ln[6]
I get the following error:
InvalidArgumentError (see above for traceback): You must feed a value for placeholder tensor 'image_tensor' with dtype uint8 and shape [?,?,?,3]
-- from my experience tensorflow cannot run the graph without any input given to the placeholders, so even-though there's the "Preprocessor/sub:0", it is not enough because the post processing block needs the image_tensor (for dimensions) - I fixed it by feeding a dummy image to the placeholder...
What tensorflow version are you using ? maybe the error I got is because of version differences?
Just trying to figure out what I'm missing here...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think this line is hard coded:
"sorted_high_scores = np.concatenate((high_scoring_scores[sorted_inds].reshape(7, 1), high_scoring_boxes, high_scoring_anchors), axis=1)"
Changing it to this would be better:
"sorted_high_scores = np.concatenate((high_scoring_scores[sorted_inds].reshape(high_scoring_scores.shape[0], 1), high_scoring_boxes, high_scoring_anchors), axis=1)"