CRNN-Keras
CRNN-Keras copied to clipboard
Quesion about Predection.py file
Hi, in the line
out_best = list(np.argmax(out[0, 2:], axis=1)) # get max index -> len = 32
why you used
2:0
in the out varibale.
If you look at "Model.py", it seems to be helpful.
def ctc_lambda_func(args):
y_pred, labels, input_length, label_length = args
# the 2 is critical here since the first couple outputs of the RNN
# tend to be garbage:
y_pred = y_pred[:, 2:, :]
return K.ctc_batch_cost(labels, y_pred, input_length, label_length)