Reputation: 538
I am working on a NLP project. I want to create a dependency parsing graph for an entire paragraph, instead of sentence. Is there an existing method for the same?
Upvotes: 1
Views: 487
Reputation: 58
There is no such dependency parsing for a paragraph but you can use Stanford coreference resolution on the sentences and extract particular dependencies.
Upvotes: 1