3

I am new to GATE (version 8.0) and trying to get the Stanford NER working as part of the processing pipeline.

If I just do a search for Stanford in the plugins I don't see it:

enter image description here

I'm finding conflicting information online about how to add it in.

I know that there is this plugin file. I also see that there is a StanfordNER plugin listed in the GATE docs. I saw this on a stanford mailing list. Plus I saw this old post from stackoverflow: Stanford_CoreNLP plugin for gate

How do I get Stanford NER installed and working with GATE?

Community
  • 1
  • 1
bernie2436
  • 22,841
  • 49
  • 151
  • 244

2 Answers2

4

I am new to GATE (version 8.0)

The Stanford_CoreNLP plugin was introduced in June 2014, after the release of GATE version 8.0, so you need to download a more recent nightly snapshot build and install that instead. In version 8.0 the Stanford POS tagger and parser were available as separate plugins (as you show in your screenshot) but the NER tools were not included at that point.

As a general rule, if you want to be sure you're looking at the correct version of the GATE user guide then you should access it via the "help" menu in GATE Developer. The user guide link on the GATE website refers to the latest snapshot, not to a numbered release.


Edit June 2015: GATE Developer version 8.1 has now been released, which includes the Stanford_CoreNLP plugin.

Ian Roberts
  • 120,891
  • 16
  • 170
  • 183
2

You must load the Stanford CoreNLP plugin. Then, you have to create a new Processing Resource like that:

enter image description here

Then, you just have to include your PR in a pipeline. For example, here I replace the traditional NE Transducer by Stanford NER:

enter image description here

Finally, try it on a corpus and you'll have the NE annotation.

  • I don't see the stanford Ner in the list. How do I load it? – bernie2436 Dec 20 '14 at 14:05
  • 1
    You just have to load the StanfordCore NLP plugin through Creole plugin manager. Then, you'll we see new PR in your list (Stanford NER included). Which version of GATE are you using ? If you're a new GATE user you can have a look to the GATE courses https://gate.ac.uk/sale/talks/gate-course-jun14/ particularly this introduction https://gate.ac.uk/sale/talks/gate-course-jun14/module-1-ie-and-eval/module-1-introduction-to-gui.pdf – Chester Mc Allister Dec 20 '14 at 14:48
  • I am using stable build 8.0. The folks from the mailing list say that Stanford Core NLP was not included in that release. So I guess I need to go to the nightly build? I downloaded that but don't know how to build it. – bernie2436 Dec 20 '14 at 14:51
  • 1
    version 8.0 was the problem. I downloaded the latest build and ran it and now see Stanford Core NLP. – bernie2436 Dec 20 '14 at 14:55
  • if you're ok with the answer you can accept the response – Chester Mc Allister Dec 20 '14 at 15:20