Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想计算语料库的 BLEU 分数。
由于一些问题,我不得不使用句子级别的 BLEU 分数,而不是语料库级别的 BLEU。我已经nltk.translate.bleu_score.sentence_bleu在 python 中使用来计算每个句子的 BLEU 分数,现在我想为整个语料库分配一个分数。
nltk.translate.bleu_score.sentence_bleu
我应该如何对部分分数进行积分?我应该使用几何平均值还是其他什么?
任何帮助,将不胜感激。