Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why output_tensors=["Placeholder:0", "concat_9:0", "mul_9:0"] #16

Open
float123 opened this issue Jun 19, 2019 · 5 comments
Open

Why output_tensors=["Placeholder:0", "concat_9:0", "mul_9:0"] #16

float123 opened this issue Jun 19, 2019 · 5 comments

Comments

@float123
Copy link

I wan to know why output_tensors=["Placeholder:0", "concat_9:0", "mul_9:0"], these three nodes are not at the end of the model. And what does ":0" mean? Please advise,thank you.
image

@ardianumam
Copy link
Owner

Why not at the end of model

Because after the network output, we still have further operation, such as loss calculation, etc.

what :0 is

It is tensorflow convention when we wanna call a value from a tensor by tensor name, we need to add :0 in the end of it.

@float123
Copy link
Author

Thank you very much for your reply,I am currently researching yolov3 to TensorRT,your project has helped me a lot. There is still a question I would like to ask,why do we choose output_tensor to be "concat_9" and "mul_9", or what are their return values? the model is very troubled by me.

@ardianumam
Copy link
Owner

Those only tensor names. Everyone can name the tensor any name he wants. Those output in object detector correspond to the outputs of classification and bonding box predictions.

@Pidem
Copy link

Pidem commented Aug 8, 2019

Hey, I am confused. Where did you get this model architecture from? Did you fork YunYang's model. More specifically, why is NMS part of your model ?

@DongXinru
Copy link

I wonder how you got your yolov3 model file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants