-
Notifications
You must be signed in to change notification settings - Fork 73
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
YoloV3 detects very large boxes after conversion from .weights to .pb #37
Comments
How did you get the detection? I am trying to get the detections after using DWT2F to convert yolov2 model. Please help me. |
Hey @abhishek1edwin If you have used DWT2F to convert your model then you definitely have either a .cpkt or a .pb file that represents your model. it goes smth like this for quick test :
then use this to determine the name of the input tensor through the operation sthat corresponds to it.
afterwards,
|
How do you process next. I don't know how the output is encoded. Is it possible for you to share with me the code you have implemented to get the boxes? |
check @YunYang1994 |
yolov3-tiny/net1 yolov3-tiny/convolutional1/kernel/Initializer/random_uniform/shape yolov3-tiny/convolutional1/kernel/Initializer/random_uniform/min yolov3-tiny/convolutional1/kernel/Initializer/random_uniform/max yolov3-tiny/convolutional1/kernel/Initializer/random_uniform/RandomUniform yolov3-tiny/convolutional1/kernel/Initializer/random_uniform/sub yolov3-tiny/convolutional1/kernel/Initializer/random_uniform/mul yolov3-tiny/convolutional1/kernel/Initializer/random_uniform yolov3-tiny/convolutional1/kernel |
Hi,
I used the DW2TF to convert a Yolov3 model to a .pb model, but after the conversion, the model no longer detects well.
The detected boxes' widths are all equal to the width of the input image while the heights take from the third to the whole height of the input image.
I successfully converted a model almost two months ago, it was exactly the same as the current one except for the number of classes (1 before, 7 now)
Have you ever encountered this problem? Do you have any idea how to solve it?
Thank you very much in advance
The text was updated successfully, but these errors were encountered: