|
@@ -248,7 +248,7 @@ def norm_community(asr):
|
|
|
term = "|".join([term[0] for term in pinyin(word, style=Style.NORMAL)])
|
|
|
if term in user_dict['pinyin']:
|
|
|
return user_dict['pinyin'][term]
|
|
|
- for r in range(1, len(words) + 1):
|
|
|
+ for r in range(1, min(len(words) + 1, 6)):
|
|
|
combinations_list = list(itertools.combinations(words, r))
|
|
|
features = [executor.submit(match_loc, combo) for combo in combinations_list]
|
|
|
result =[feature.result() for feature in as_completed(features)]
|