Annotates the given list of tokens with verb/predicate tags.
(self, tokens, **kwargs)
| 546 | return find_prepositions(tokens) # See also Parser.find_chunks(). |
| 547 | |
| 548 | def find_labels(self, tokens, **kwargs): |
| 549 | """ Annotates the given list of tokens with verb/predicate tags. |
| 550 | """ |
| 551 | return find_relations(tokens) |
| 552 | |
| 553 | def find_lemmata(self, tokens, **kwargs): |
| 554 | """ Annotates the given list of tokens with word lemmata. |