コード:
import nltk
from nltk.translate.bleu_score import sentence_bleu
score1 = sentence_bleu(ref1, cand)
ここで計算された BLEU スコアから簡潔性ペナルティを無視するにはどうすればよいですか?
コード:
import nltk
from nltk.translate.bleu_score import sentence_bleu
score1 = sentence_bleu(ref1, cand)
ここで計算された BLEU スコアから簡潔性ペナルティを無視するにはどうすればよいですか?