-
Notifications
You must be signed in to change notification settings - Fork 580
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
Add support for batch nms and export checkpoint to frozen graph #174
base: master
Are you sure you want to change the base?
Add support for batch nms and export checkpoint to frozen graph #174
Conversation
Thanks. It's very nice of you. But I don't think it's a good idea to include the nms into the frozen model. Because it the inference part, oen may want to adjust parameters like num_box and score. In this case, one may need to freeze a model everytime he wants to try other parameters. So maybe it's better to freeze the model till the feature maps? |
You can experiment nms parameters using checkpoint files and then export the model to frozen graph. If you still want to tune nms parameters, you can set confidence score and iou threshold low and max number of detections high. You can also make your own version of frozen graph easily. |
OK. Thanks very much. |
thanks,it helps me?but when i want to convert pb_model to tflite_model,i get the error Current thread 0x000013f8 (most recent call first): Process finished with exit code 1 |
No description provided.