Any recommendations for languages/libraries to convert sentence like:
"X bumped Y, who in turn kicked Z."
to
- X: Bumped
- Y: Was bumped, kicked Z
|
1
|
Any recommendations for languages/libraries to convert sentence like:
to
|
||||||
|
|
|
Apart from the Stanford parser, RASP is a possibility too - it can produce lists of grammatical relations as part of its output. See this question. |
||
|
|
|
|
The Stanford Parser as suggested by ealdent would do the job, I would prefer to encode it as:
A POS tagger could also work, but your sentence is complicated ("who in turn"). |
||
|
|
|
I would suggest you use the Stanford Parser (http://nlp.stanford.edu/software/lex-parser.shtml), which is open source and relatively simple, as these things go. With it, you can extract a typed dependency parse. A dependency parse of a sentence basically decomposes a sentence into a set of binary relations Take your sentence X bumped Y, who in turn kicked Z. In this sentence, both X and Y depend on bumped to get their grammatical relationship in this sentence. The Stanford Parser would extract the following relations for them:
This means the subject of bumped is X and the direct object of bumped is Y. You could then use this information to make a grammatical relation:
In this case, you have the subject of kicked being "who", with Y as the For more information on using the Stanford Parser typed dependencies, there is an excellent tutorial on the subject at the Stanford Parser website (http://nlp.stanford.edu/software/dependencies%5Fmanual.pdf). |
||
|
|
|
|
To blatantly rip off this answer, why not try the Natural Language Toolkit? |
||
|
|