"tests/git@developer.sourcefind.cn:xdb4_94051/vllm.git" did not exist on "e8ef4c0820ff6457f32c17e1470fe47976b35e21"
Unverified Commit 81f0a83e authored by topduke's avatar topduke Committed by GitHub
Browse files

Update rec_nrtr_loss.py

parent da02c71d
......@@ -22,7 +22,7 @@ class NRTRLoss(nn.Layer):
log_prb = F.log_softmax(pred, axis=1)
non_pad_mask = paddle.not_equal(
tgt, paddle.zeros(
tgt.shape, dtype='int32'))
tgt.shape, dtype=tgt.dtype))
loss = -(one_hot * log_prb).sum(axis=1)
loss = loss.masked_select(non_pad_mask).mean()
else:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment