You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I realize some guys do not know what is ouput_node_names, so here are what I use. output_node_names = ["yolov3/yolov3_head/feature_map_1", "yolov3/yolov3_head/feature_map_2", 'yolov3/yolov3_head/feature_map_3']
when inference with pb, the input_node_name is Placeholder and return_elements = ["Placeholder:0", "yolov3/yolov3_head/feature_map_1:0", "yolov3/yolov3_head/feature_map_2:0", 'yolov3/yolov3_head/feature_map_3:0']
I check it and help it is useful for anyone who need it.
This repo is lack of pb file and inference with pb, I need a little help to finish it.
The text was updated successfully, but these errors were encountered:
I have already converted ckpt to pb file. The size of pb file is 248.2MB. Then I want to use the pb file for inference. I find this sample code
https://github.com/github2016-yuan/tensorflow-yolov3/blob/master/image_demo.py
But it is different. I try but just get nothing. I know the reason but can not solve it.I think
https://github.com/wizyoung/YOLOv3_TensorFlow/blob/master/test_single_image.py
is also helpful when writting code of inference with pb file.
I realize some guys do not know what is ouput_node_names, so here are what I use.
output_node_names = ["yolov3/yolov3_head/feature_map_1", "yolov3/yolov3_head/feature_map_2", 'yolov3/yolov3_head/feature_map_3']
when inference with pb, the input_node_name is Placeholder and
return_elements = ["Placeholder:0", "yolov3/yolov3_head/feature_map_1:0", "yolov3/yolov3_head/feature_map_2:0", 'yolov3/yolov3_head/feature_map_3:0']
I check it and help it is useful for anyone who need it.
This repo is lack of pb file and inference with pb, I need a little help to finish it.
The text was updated successfully, but these errors were encountered: