I have been using spaCy Python package to parse and tag text and using the resulting dependency tree and other attributes to derive meaning. Now I would like to use SyntaxNet's Parsey McParseface for parsing and dependency tagging (which seems better), but I would like to keep using spaCy API because it is so easy to use and it does many things that Parsey doesn't. SyntaxNet outputs POS tags and dependency tags/tree in a CoNLL-format:
- Bob _ NOUN NNP _ 2 nsubj _ _
- brought _ VERB VBD _ 0 ROOT _ _
- the _ DET DT _ 4 det _ _
- pizza _ NOUN NN _ 2 dobj _ _
- to _ ADP IN _ 2 prep _ _
- Alice _ NOUN NNP _ 5 pobj _ _
- . _ . . _ 2 punct _ _
and spaCy seems to be able to read CoNLL format right here. But I can't figure out where in spaCy's API does it take a CoNLL-fromatted string.