Questions tagged [gate]

GATE is a Java framework for developing natural language processing applications.

GATE (a General Architecture for Text Engineering, http://gate.ac.uk) is a family of open-source tools for developing natural language processing applications. The GATE family includes a number of inter-related components, and this tag is appropriate for questions about any of them:

  • GATE Developer, a graphical development environment for NLP applications.
  • GATE Embedded, the Java library underlying GATE Developer, allowing applications developed in Developer to be embedded into other Java applications.
  • GATE Teamware, a web-based collaborative annotation and data curation platform.
  • GATE Mímir, an indexing system supporting annotation- and ontology-based search over large text collections that have been processed by a GATE Embedded application.
  • GATECloud.net, a service for running GATE Embedded applications over large corpora using cloud computing.

GATE Developer, Embedded and Mímir are licenced under the Lesser GPL, and Teamware under the Affero GPL.

For more information about the GATE family of tools, see

293 questions
1
vote
3 answers

Parse XML Self-Closing Tags with Text

Hey everyone I am trying to parse this part of an XML file I have. The problem I am encountering is that the text contains a lot of self-closing tags. I can't remove those tags because they are providing me with some indexing detail. How can I get…
Elliott
  • 29
  • 10
1
vote
0 answers

Java executable jar get file

I need an executable jar for my program. A part of the program contains the Gate entity extraction tool. Here is the part of the code: ClassLoader classLoader = getClass().getClassLoader(); File file = new…
sp0030
  • 109
  • 1
  • 6
1
vote
1 answer

JAPE check for numeric only input

I have the below JAPE file for ANNIE in which I am trying to ensure that establishments names which contain only numeric characters do not get annotated. I have tried many variations of the below but do not seem to be able to get it to work.…
1
vote
1 answer

GATE Loading Processing Resources / Pronoun Resolution

I'm trying to load the pronomial coreference module using ANNIE (in Java) but I'm having some issues with the following code: FeatureMap params = Factory.newFeatureMap(); params.put("resolveIt", "true"); ProcessingResource coref =…
Anne Rose
  • 47
  • 4
1
vote
0 answers

How can you train GATE (General Architecture for Text Enginnering) Developer with some training data or data that already annotated?

I am looking for ways to train my GATE. Not just running the application, but training it with like data that already annotated (not just plain document). I really appreciate if anybody help me. Thanks :)
1
vote
0 answers

How to use OwlExporter in GATE embedded

I have GATE pipeline having PR (Processing Resources) and LR (Language Resources), but don't know how to add OwlExporter plugin. I have OwlExporter folder downloaded but no idea how to add it. I have done entity extraction for Person, Place,…
Annajirao
  • 11
  • 1
1
vote
1 answer

Extracting annotations from GATE in xml

How can I possibly retrieve the annotated texts from the document in a structured way as below. I am using a sentence as a unit of processing, meaning that I would like to retrieve specific texts from the sentences and put them together later. So, I…
1
vote
0 answers

java.lang.UnsatisfiedLinkError: Can't find libhunspell-linux-x86-64.so in the filesystem nor in the classpath

I am working on GATE tool and trying to process text in different language. I am using languageTool.jar. The processing of german and english is working fine. During the processing of french in GATE it is showing the below error. Exception in thread…
Athira S
  • 11
  • 1
1
vote
1 answer

Creating new annotation sets in GATE

I have started learning GATE application and I would like to use it to extract information from an unstructured document. The information I am interested in are date, location, event information and person’s names. I would like to get information…
1
vote
1 answer

How to create JAPE grammar rules in Gate

I am learning to use Gate to retrieve information from documents. Could somebody please explain to me exactly what I have to do to get my JAPE grammar rule to work. I have checked most tutorials and Gate manual but I am still not getting the point.…
1
vote
0 answers

How to Convert an Inline annotation file into a GATE annotation file?

Gate Developer can save both it's annotation files in two formats, GATE XML or Inline XML. If I saved one file as Inline XML, can I convert it to a GATE XML using Gate Embedded?
Janaka Chathuranga
  • 1,742
  • 16
  • 19
1
vote
2 answers

GATE SUMMA configuration

I am trying to use the GATE SUMMA from the java. I am trying to run the files included in the tutorial. I have downloaded both ANNIE and SUMMA plugins seperately. What I dont understand is this part in the configuration. Gate.init(); …
Betafish
  • 1,212
  • 3
  • 20
  • 45
1
vote
1 answer

re-init method of ontoRootGazetteer is not working

I am new to GATE NLP. I am working on an application which works on GATE NLP. So, I have created a pipeline, and i am loading it only once in application by creating singleton object. So, Because of this performance of application has increased but…
ganesh
  • 43
  • 6
1
vote
1 answer

GATE_Using for Thesis_Run-time Error

When I am trying to run corpus pipeline on language resources. It is throwing the below (even though I follow the order as Document reset, english tokeniser, sentence splitter) Can someone help me with the process to debug this run-time error…
1
vote
1 answer

How to run JAPE rules

Necessary please ! I want to ask about how to run Jape rules in the Gate program,, My documents and rules are for Arabic language ,, I wrote the rule in note file with .jape extension , and save it in path : >> lang Arabic >> resources >> grammar ,,…