Created
July 20, 2017 17:45
-
-
Save FranciscusRenatus/86efb15e6021fb5ab02bad586630dc1f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import nltk | |
nltk.download('stopwords') | |
from nltk.corpus import stopwords | |
from nltk.stem.porter import PorterStemmer | |
ps = PorterStemmer() | |
review = [ps.stem(word) for word in review if not word in set(stopwords.words('english'))] | |
review = ' '.join(review) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment