-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevaluate.py
39 lines (31 loc) · 864 Bytes
/
evaluate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from wordfilter import Wordfilter
import enchant
# returns true if the message doesn't contain a blacklisted word
def wfilter(entry):
wordfilter = Wordfilter()
if wordfilter.blacklisted(entry.lower()) == False:
return True
else:
return False
# check if at least 3/4 of all words are real words
def percentWords(entry):
dictionary = enchant.Dict("en_US")
wlist = entry.split()
realWordCount = 0
for i in wlist:
if dictionary.check(i) == True:
realWordCount += 1
if realWordCount / len(wlist) >= 0.75:
return True
return False
# define a scre for the length of the input
def wordCountScore(entry):
wlist = entry.split()
if len(wlist) < 15:
return 1
elif len(wlist) < 30:
return 2
elif len(wlist) < 75:
return 3
else:
return 4