-
Notifications
You must be signed in to change notification settings - Fork 116
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 conversion for the current model #30
Comments
@yechta Did you find a workaround ? |
anyone ? |
@Abdullah-Majeed @ayazmhmd Yep. To put it simply, a step is missing to convert the current ouput ( [[1, LARGE_NUMBER, SMALL_NUMBER]] ) to the default one. The missing step is the non max suppression (NMS). |
Can you tell us where we need to change the code |
@Romoule how do i change it? |
Hello there,
I have been trying to implement this code for my custom model which uses YoloV3. When I get to the _outputShapes part, I get an error since the default model and mine aren't compatible.
The default model's output shape looks like this: [[1, 10, 4], [1, 10], [1, 10], [1]]
My model's output shape on the other hand, looks like this: [[1, 10647, 6]]
Here is where the problem is. I need to convert this part of code for my model.
What do I need to do in order for my custom model to work?
The text was updated successfully, but these errors were encountered: