Reputation: 241
Is there a way to have a list of all type of Stanford Dependencies?
http://nlp.stanford.edu/software/stanford-dependencies.shtml
Upvotes: 3
Views: 2710
Reputation: 11
If you are looking for the list of dependencies for the newer versions (3.5.2 and newer) of the Stanford dependency parser, take a look at the Universal dependencies and there in particular the English grammatical relations page
This is linked in the manual.
Upvotes: 1
Reputation: 6998
I know it's a little late, but I was looking for this same thing and found the list: http://wiki.opencog.org/w/Dependency_relations#Standard_list_of_dependency_relations
This is also available in the back of the Stanford Dependencies Manual.
Upvotes: 2
Reputation: 9450
What do you think is missing? For the basic dependencies, the list in the manual should be complete. If not, that's a bug.
For the collapsed dependencies, in the main the same should apply, but it's more complex because two dependencies (prep_* and conj_*) really have an open slot. While prepositions and conjunctions are often regarded as closed parts of speech, there isn't any pregenerated list of fillers. Anything analyzed as a preposition or conjunction by the parser will fill that slot.
Upvotes: 3
Reputation: 28762
Take a look at the Stanford Dependencies Manual. It lists all dependencies with short explanations and examples. Be aware that newer versions of the Stanford Parser might use slightly different dependencies (usually more specialized ones)
Upvotes: 1