run cB_to_freq only once per bucket

This commit is contained in:
Joshua Chin 2015-07-07 14:55:13 -04:00
parent 6a40e63060
commit 5e8ef19321

View File

@ -213,8 +213,9 @@ def get_frequency_dict(lang, wordlist='combined', match_cutoff=30):
freqs = {}
pack = get_frequency_list(lang, wordlist, match_cutoff)
for index, bucket in enumerate(pack):
freq = cB_to_freq(-index)
for word in bucket:
freqs[word] = cB_to_freq(-index)
freqs[word] = freq
return freqs