stanfordnlp / stanza

Stanford NLP Python library for tokenization, sentence segmentation, NER, and parsing of many human languages
https://stanfordnlp.github.io/stanza/
Other
7.2k stars 885 forks source link

Where is Semantic Dependency Parsing? #1015

Open xoffey opened 2 years ago

xoffey commented 2 years ago

I am looking for the code for Semantic Dependency Parsing. https://github.com/tdozat/Parser-v3 said I should be able to find it in the https://github.com/stanfordnlp/stanfordnlp/ repo. But that repo is marked obsolete, replaced by this stanza repo.

Is the relevant code in this repo? If so, where can I get instructions for getting it up and running? If not, where should I look next?

Thank you

AngledLuffa commented 2 years ago

The Dozat parser is the depparse module. You can find it in stanza/models/depparse

On Sat, Apr 23, 2022, 4:34 PM Michael J. Coffey @.***> wrote:

I am looking for the code for Semantic Dependency Parsing. https://github.com/tdozat/Parser-v3 said I should be able to find it in the https://github.com/stanfordnlp/stanfordnlp/ repo. But that repo is marked obsolete, replaced by this stanza repo.

Is the relevant code in this repo? If so, where can I get instructions for getting it up and running? If not, where should I look next?

Thank you

— Reply to this email directly, view it on GitHub https://github.com/stanfordnlp/stanza/issues/1015, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA2AYWJVRHSDNRY673Y4W3TVGSCHHANCNFSM5UFLXFCQ . You are receiving this because you are subscribed to this thread.Message ID: @.***>

manning commented 2 years ago

But I don't think the Semantic Dependency Parsing functionality is in Stanza. For that I think you'd still need to look at the Tensorflow https://github.com/tdozat/Parser-v3 version. It's a fairly modest extension to the neural dependency parser that is in Stanza, but someone would have to add the additional bits.