Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. """ Lemmitization """
  2.  
  3. for token in gutten_nlp:
  4. lemma = (token.lemma_)
  5. print(lemma)
  6.  
  7.  
  8. """ Part of Speech """
  9.  
  10. for token in gutten_nlp:
  11. tag_token = (token, token.tag_)
  12. print(tag_token)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement