CRNN-Keras icon indicating copy to clipboard operation
CRNN-Keras copied to clipboard

Quesion about Predection.py file

Open ghost opened this issue 6 years ago • 1 comments

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.

ghost avatar Feb 16 '19 09:02 ghost

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)

qjadud1994 avatar Feb 20 '19 06:02 qjadud1994