Skip to content

Instantly share code, notes, and snippets.

@makispl
Created April 11, 2020 22:08
Show Gist options
  • Save makispl/cdc622acf6c8e3521b03378388e9031c to your computer and use it in GitHub Desktop.
Save makispl/cdc622acf6c8e3521b03378388e9031c to your computer and use it in GitHub Desktop.
porter = nltk.PorterStemmer()
training_set['SMS'] = training_set['SMS'].apply(lambda x: ' '.join(
porter.stem(term) for term in x.split())
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment