Multiple 'REL_OP' options? #10283
Replies: 1 comment 11 replies
-
You can't pass multiple REL_OPs to the DependencyParser for a single token. In this case I think Another thing is that if you are actually looking just for |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using dependency matcher to match close questions, like
Are you....? etc.
For it to work, I need to make sure that 'are' is a parent of 'you' and also precedes 'you'.
At the moment I can use one 'LEFT_ID' and 'RIGHT_ID' pair to define the 'parenthood', as follows:
And another pair to define the order, as follows:
However this will become a problem if somewhere else in the sentence there is another
nsubj
.Is it possible to define the relationships between these two nodes BOTH '>' and '.*' at the same time?
Beta Was this translation helpful? Give feedback.
All reactions