-
Notifications
You must be signed in to change notification settings - Fork 59
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
Model freezing #28
Comments
Sorry I have not tried it. Since I'm still doing experiments to reimplement the effect in paper. When I make it I'll release a frozen model. |
I tried to freeze model but I faced one issue for model freezing. For detection session output of detection is f_score and f_geometry is in a graph so it will easily convert but in cases of recognition session dense_decode which is the output node of recognition is not inside the graph. do you know how to solve and freeze model? could you provide some hints on how can I solve this issue? |
Maybe reimplement the NMS and the postprocess of detection(generating box from f_geometry) with tensorflow api. |
could you explain more about model freezing? I tried different way but fails to get dense_decode output inside recog_decode session. |
Sorry, I have never tried to freeze the model. |
@lerndeep input_box_mask is a list of 1D tensor. It is used to indicate which feature map that rois belonging to. So if you run with batch size of 1 the feeding input value is |
Have somebody success in freezing? |
Have you tried to freeze trained model from checkpoints to
.pb
file ( converting.ckpt
,.meta
,.index
inside checkpoints folder to frozen model.pb
) in a end-to-end way?Thank you beforehand
The text was updated successfully, but these errors were encountered: