stanfordnlp / CoreNLP

CoreNLP: A Java suite of core NLP tools for tokenization, sentence segmentation, NER, parsing, coreference, sentiment analysis, etc.
http://stanfordnlp.github.io/CoreNLP/
GNU General Public License v3.0
9.69k stars 2.7k forks source link

What is the relationship between stanza and CoreNLP? #1464

Open lamrongol opened 2 months ago

lamrongol commented 2 months ago

stanfordnlp/stanza is also developped by same group(Stanford), isn't it? And README of stanza says how to use CoreNLP from stanza. However, on README of CoreNLP, stanza is not reffered. Is there a official way to connect stanza from Java?

I want to analyze Portuguese.

AngledLuffa commented 2 months ago

There is no CoreNLP PT, so, you'll need to use Stanza

On Mon, Sep 2, 2024, 1:15 PM Lamron @.***> wrote:

stanfordnlp/stanza https://github.com/stanfordnlp/stanza is also developped by same group(Stanford), isn't it? And README of stanza says how to use CoreNLP from stanza. However, on README of CoreNLP, stanza is not reffered. Is there a official way to connect stanza from Java?

I want to analyze Portuguese.

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

lamrongol commented 2 months ago

@AngledLuffa Hmmm... If I want to use stanza from Java, an external tool is needed, isn't it? like following: Welcome to Py4J — Py4J via https://stackoverflow.com/a/42876492/3809427

I decided to use ProcessBuilder to use Python from Java. Regards,