Stanford_CoreNLP plugin for gate

I'm looking Stanford_CoreNLP plugin

with Stanford NER

(not StanfordParser

or StandfordPOSTagger

) for GATE

(General Architecture for Text Engineering). I found some information about the plugin here . But I couldn't find it integrated with GATE

(version 8) by default. I also tried to find a link to download the plugin but couldn't find ...

Does anyone know how to activate it or where to download it from?

Thanks in advance...

+1


source to share


1 answer


As John said, somehow the Stanford_CoreNLP plugin was dropped from the latest release of the GATE package. However, it is included in the daily snapshots generated by their Jenkins server. You can download them here:

http://jenkins.gate.ac.uk/job/GATE-Nightly/lastSuccessfulBuild/



Unfortunately, there is no ready-made .gapp file for Stanford NER included in the GATE plugin. This means it's not as easy as loading the application file to run Stanford NER inside GATE - there's a little more configuration in there. You might be able to create your own custom .gapp file, but at the same time, the NER.java file in the source for the Stanford NER plugin will help you run it inside GATE:

http://sourceforge.net/p/gate/code/HEAD/tree/gate/trunk/plugins/Stanford_CoreNLP/src/gate/stanford/NER.java

+2


source







All Articles