combine_words_through_grammar replaced with stem_words function using nltk stemmer

Bug476-ZhangWeiHao
Nze Avomo Zenovio Ndong 2023-05-10 00:11:45 +08:00
parent 16ab48d162
commit 828f64770e
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
import pickle import pickle
import math import math
from nltk.stem import WordNetLemmatizer from nltk.stem import WordNetLemmatizer # using WordNetLemmatizer for better performance
from wordfreqCMD import remove_punctuation, freq, sort_in_descending_order, sort_in_ascending_order from wordfreqCMD import remove_punctuation, freq, sort_in_descending_order, sort_in_ascending_order