You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
the parser works great and I would like to reproduce the dependency graph
that I saw in your example.
I am using the docker image and tried the option "conll" and "graphical" as an output.
"graphical" seems to include the svg file but I would like to understand how to find the hierarchical arrows between the different words based on the "conll" data (not just the final image, but in some kind of hierarchical structure.)
The text was updated successfully, but these errors were encountered:
The tree structure can be recovered from the conll formatted output. In the conll output, the head position of each word is given in column 7 - words with head position 0 form the top-level roots. For all other positions, there will be an dependency arc (arrow) from the head to that position. To find out what level in the tree you are in, you count how many arcs it takes to reach a root.
Hello,
the parser works great and I would like to reproduce the dependency graph
that I saw in your example.
I am using the docker image and tried the option "conll" and "graphical" as an output.
"graphical" seems to include the svg file but I would like to understand how to find the hierarchical arrows between the different words based on the "conll" data (not just the final image, but in some kind of hierarchical structure.)
The text was updated successfully, but these errors were encountered: