Merge pull request #892 from PaddlePaddle/ctc_grad_norm

[WIP] ctc loss api debug
pull/894/head
Jackwaterveg 3 years ago committed by GitHub
commit 1a0c0ae08e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -362,11 +362,19 @@ def ctc_loss(logits,
label_lengths,
blank=0,
reduction='mean',
norm_by_times=True):
norm_by_times=True,
norm_by_batchsize=False,
norm_by_total_logits_len=False):
#logger.info("my ctc loss with norm by times")
## https://github.com/PaddlePaddle/Paddle/blob/f5ca2db2cc/paddle/fluid/operators/warpctc_op.h#L403
loss_out = paddle.fluid.layers.warpctc(logits, labels, blank, norm_by_times,
input_lengths, label_lengths)
loss_out = paddle.fluid.layers.warpctc(
logits,
labels,
blank,
norm_by_times,
input_lengths,
label_lengths,
norm_by_batchsize, )
loss_out = paddle.fluid.layers.squeeze(loss_out, [-1])
assert reduction in ['mean', 'sum', 'none']

Loading…
Cancel
Save