Parse the given ufal.udpipe.Sentence (inplace).
(self, sentence)
| 45 | self.model.tag(sentence, self.model.DEFAULT) |
| 46 | |
| 47 | def parse(self, sentence): |
| 48 | """Parse the given ufal.udpipe.Sentence (inplace).""" |
| 49 | self.model.parse(sentence, self.model.DEFAULT) |
| 50 | |
| 51 | def write(self, sentences, out_format): |
| 52 | """Write given ufal.udpipe.Sentence-s in the required format (conllu|horizontal|vertical).""" |