CRNN-Keras
CRNN-Keras copied to clipboard
ValueError while training
ValueError: Cannot copy sequence with size 3 to array axis with dimension 19.
19 is max_text_len.
Getting same error in image_generator.py line 63: "Y_data[i] = text_to_labels(text)". It is because of length of Y_data[i[ is max_text_len whereas text_to_lables(text) returns list of length same as text. Possible solution will be to use padding.