I’m trying to debug a regression (in our code) in terms of the behaviors of the log-probabilities on characters between 0.6 an 0.7. It’s very likely something I’ve done wrong but it would be super helpful if someone was able to give me a quick run down on these params from CTC Decode
To ask in text, form, in case someone is using a screen reader. What are these parameters? Is there any documentation on what they represent ?
log_prob_b_prev = -NUM_FLT_INF;
log_prob_nb_prev = -NUM_FLT_INF;
log_prob_b_cur = -NUM_FLT_INF;
log_prob_nb_cur = -NUM_FLT_INF;
log_prob_c = -NUM_FLT_INF;
Which one is closest to the actual logit value of the final layer in the NN?