spaCy provides POS tagging and dependency trees. Is it possible to get what Stanford calls the "Parse" tree from it? The difference between these two trees can be seen at the Stanford parser demo at http://nlp.stanford.edu:8080/parser/index.jsp
Stanford "Parse" tree:
(ROOT
(S
(NP (NNP John))
(VP (VBZ likes)
(NP (PRP him)))
(. .)))
Dependency tree: (Provided by spaCy and Stanford parser)
nsubj(likes-2, John-1)
root(ROOT-0, likes-2)
dobj(likes-2, him-3)
Is it possible to deduce or directly get the parse tree in spaCy? I have gone through the documentation and I couldn't find any direct API's.