You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for your ownsome work of Dynamic Low-Resolution Distillation for Cost-Efficient End-to-End Text Spotting.
I have a question about the implementation about beam search. It seems that the function beam_decode receive the softmax results on teacher logits, which means it is a probability not the log probability. However, in this and this line, it seems that you have incorrectly treat the probability as log probability (although the name is logp...). I think multiply operator should be used instead of the add operator.
Best.
The text was updated successfully, but these errors were encountered:
Hi authors,
Thanks for your ownsome work of Dynamic Low-Resolution Distillation for Cost-Efficient End-to-End Text Spotting.
I have a question about the implementation about beam search. It seems that the function
beam_decode
receive the softmax results on teacher logits, which means it is a probability not the log probability. However, in this and this line, it seems that you have incorrectly treat the probability as log probability (although the name is logp...). I think multiply operator should be used instead of the add operator.Best.
The text was updated successfully, but these errors were encountered: