tensorflow-yolov3
tensorflow-yolov3 copied to clipboard
Output Node names
I am trying to convert your model into .dlc format which is Qualcomm Snapdragon (SNPE) format.
I gave the output node names "pred_sbbox/concat_2, pred_mbbox/concat_2, pred_lbbox/concat_2"
However its says that ERROR_TF_NODE_NOT_FOUND_IN_GRAPH: Node not found in graph. Node name: pred_sbbox/concat_2
Kindly let me know the whats the output node names.
I met the same problem, I found that SNPE seems not support leaky relu in Tensorflow. Now I replace the leakyRelu operation with relu.
hi @Rahn80643, @sainisanjay
I'm trying to convert yolov3 pb file to dlc, and have similar problem,
after I replace leakyRelu to Relu, another problem happened, the error message showed below:
"ERROR - Conversion failed: build_layer failed with Exception ERROR_TF_LAYER_INPUT_COUNT_ERROR: Layer Convolution expects 1 input(s), actual 2 in layer ResizeLayerBuilder"
Did you know how to solves this? Or both of you have already convert dlc file successfully? Any suggestion will be appreciated. Thanks
Same problem, any news?
I met the same problem, I found that SNPE seems not support leaky relu in Tensorflow. Now I replace the leakyRelu operation with relu.
Hi buddy, Have you resolved this issue?