We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here in the view: https://github.com/CogComp/sioux/blob/fb67e448fcde5010413e2ce7dded54b95461be51/sioux/core/view.py#L7-L17
We only print the constituents; while we should also print the relations too. Maybe like this:
relation-label (source-cons-label, target-cons-label)
For example for parse tree:
det(construction-2, The-1) nsubj(finished-8, construction-2) case(library-7, of-3) det(library-7, the-4) compound(library-7, John-5) compound(library-7, Smith-6) nmod(construction-2, library-7) root(ROOT-0, finished-8) case(time-10, on-9) nmod(finished-8, time-10)
The text was updated successfully, but these errors were encountered:
Okay, just output relations line by line? If some views contain many relations, it might occupy the whole screen...
Sorry, something went wrong.
Yeah that should be fine.
No branches or pull requests
Here in the view:
https://github.com/CogComp/sioux/blob/fb67e448fcde5010413e2ce7dded54b95461be51/sioux/core/view.py#L7-L17
We only print the constituents; while we should also print the relations too. Maybe like this:
For example for parse tree:
The text was updated successfully, but these errors were encountered: