Guest User

Untitled

a guest
Oct 18th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. for (CoreMap sentence : document.get(CoreAnnotations.SentencesAnnotation.class)) {
  2. ...
  3. }
  4.  
  5. sentence.get(CoreAnnotations.TokensAnnotations.class).remove(token.get(CoreAnnotations.IndexAnnotation.class));
  6. token.setWord("John");
  7. sentence.get(CoreAnnotations.TokensAnnotation.class).add(token.get(CoreAnnotations.IndexAnnotation.class),token);
Add Comment
Please, Sign In to add comment