CTC LOSS ERROR InvalidArgumentError: Not enough time for target transition sequence
问题 CTC LOSS ERROR InvalidArgumentError: Not enough time for target transition sequence 回答1: your ground-truth (GT) text is too long. Your input matrix for the CTC loss function has a time-axis with length T. Your GT text must not be longer than T. Example: input matrix has length 4, your GT text is "world" with length 5, then there is no way that the matrix can contain this text, because it can encode at most 4 chars. If the GT text contains duplicate chars (like in pi zz a), then the CTC