CofeehousePy/nlpfr/nltk/test/bleu.doctest

15 lines
296 B
Plaintext
Raw Normal View History

2020-12-25 21:00:04 +01:00
==========
BLEU tests
==========
>>> from nltk.translate import bleu
If the candidate has no alignment to any of the references, the BLEU score is 0.
>>> bleu(
... ['The candidate has no alignment to any of the references'.split()],
... 'John loves Mary'.split(),
... [1],
... )
0