Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. """ Entity Recognition """
  2.  
  3. for token in gutten_nlp.ents:
  4. print(token, token.label_, token.label)
  5.  
  6.  
  7. """ Sentence Recognition """
  8.  
  9. for token in gutten_nlp.sents:
  10. print(token)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement