python中的Flesch-Kincaid可读性测试

时间:2018-03-14 06:10:52

标签: python python-3.x nltk tokenize flesch-kincaid

我需要帮助解决这个问题。我需要编写一个从文本返回FRES(Flesch阅读 - 缓和测试)的函数。给定公式:

enter image description here

换句话说,我的任务是将此公式转换为python函数。

这是previous question I had

中的代码
import nltk
import collections
nltk.download('punkt')
nltk.download('gutenberg')
nltk.download('brown')
nltk.download('averaged_perceptron_tagger')
nltk.download('universal_tagset')

import re
VC = re.compile('[aeiou]+[^aeiou]+', re.I)
def count_syllables(word):
    return len(VC.findall(word))

from itertools import chain
from nltk.corpus import gutenberg
def compute_fres(text):
    """Return the FRES of a text.
    >>> emma = nltk.corpus.gutenberg.raw('austen-emma.txt')
    >>> compute_fres(emma) # doctest: +ELLIPSIS
    99.40...
    """

for filename in gutenberg.fileids():
    sents = gutenberg.sents(filename)
    words = gutenberg.words(filename)
    num_sents = len(sents)
    num_words = len(words)
    num_syllables = sum(count_syllables(w) for w in words)
    score = 206.835 - 1.015 * (num_words / num_sents) - 84.6 * (num_syllables / num_words)
return(score)

这是我得到的结果:

Failure
Expected :99.40...

Actual   :92.84866041488623

**********************************************************************
File "C:/Users/PycharmProjects/a1/a1.py", line 60, in a1.compute_fres
Failed example:
    compute_fres(emma) # doctest: +ELLIPSIS
Expected:
    99.40...
Got:
    92.84866041488623

我的任务是将doctest和结果传递给99.40 ... 我也不允许更改以下代码,因为它是通过任务本身给我的:

import re
VC = re.compile('[aeiou]+[^aeiou]+', re.I)
def count_syllables(word):
    return len(VC.findall(word))

我觉得我已经接近但不确定为什么我会得到不同的结果。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

三个num_*变量的类型均为int(整数)。在大多数编程语言中,将整数相除时,会得到一个整数结果,并四舍五入,例如14 / 5产生2,而不是2.8。

将计算结果更改为

score = 206.835 - 1.015 * (float(num_words) / num_sents) - 84.6 * (num_syllables / float(num_words))

当除法中的一个操作数为float时,另一个也将静默转换为float并执行(精确)浮点除法。尝试float(14)/2

此外,您的正则表达式VC在元音中不包含“ y”,并且不将单词末尾的一组元音视为一个音节。这两个错误都忽略了音节的数量,例如count_syllables("myrtle")将返回0。