pytorch中loss_functions—ctcloss
首先来看下ctc_loss的函数形式:
torch.nn.functional.ctc_loss(log_probs, targets, input_lengths, target_lengths, blank=0, reduction='mean', zero_infinity=False)
参数
- log_probs –(T,N,C)其中C是码表中的字符个数,包括blank。T表示序列的长度,N表示batch size。该参数需要先进行取自然对数处理,通过
torch.nn.functional.log_softmax()
。 - targets<