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
1 answer

Use gazetteer as dictionary within JAPE rule in GATE

I have this scenario: I have a list of key-value pairs in the form of (for instance) 000.000.0001.000 VALUE1 000.000.0002.000 VALUE2 ... 000.010.0001.000 VALUE254 The documents presents the information using a table as follows: SK1 | SK2 | SK3 |…
antorqs
  • 619
  • 3
  • 18
1
vote
0 answers

GATE: plugin jars conflict with jars in the application classpath

I wrote a small plugin for the natural language processing tool GATE, https://gate.ac.uk/ The CREOLE plugin is mainly a java bean which extends gate.creole.AbstractLanguageAnalyser. It may use additional JAR files which come together with the…
rmv
  • 3,195
  • 4
  • 26
  • 29
1
vote
1 answer

GATE uses all memory , hang application and gives Out Of Memory exception - Heap space issue

I am using GATE nlp to parse documents. When some document with encrypted text get processed in pipeline, first it will hang the application for some time and later it throws OutOfMemory exception. I also increased the server size, but problem…
RGG
  • 33
  • 1
  • 12
1
vote
1 answer

Bullets in document getting as a question mark in GATE NLP

I am new to GATE NLP. I have a document, which contains bullets. When I load it into GATE. Bullets are detected as an unknown type symbol which is printed as  . I also tried to set the encoding to UTF-8. And I also tryed to load the document…
ganesh
  • 43
  • 6
1
vote
1 answer

GATE JAPE rule priorities not respected

I have following text: 1 hwb wert: 330 kWh In the first step, following mapping is tacking place: 330 kWh is mapped as: Lookup.major = "unit" hwb wertis mapped as: Lookup.major = "keyword" The JAPE Rules: Phase: composedUnits Input: Token…
Paul
  • 1,325
  • 2
  • 19
  • 41
1
vote
2 answers

Can JAPE match paragraph Annotation in LHS?

I'm working on a math word problem solver, and would like to pass whole problems to my GATE Embedded application using JAPE. I'm using GATE IDE to display the output, as well as run the pipeline of GATE components. Each problem will be in its own…
npCompleteNoob
  • 481
  • 1
  • 5
  • 15
1
vote
1 answer

Embedded gate processing resources re-init does not take updated ontology

We are using embedded gate in our service which is used for annotating documents. In this once we annotate a word it updates either a gazetteer or ontology. When we reload the document the newly added word should not be shown in the orphan list. For…
Shrads
  • 51
  • 1
  • 6
1
vote
2 answers

How to properly arrange the processing resources of a pipeline in GATE Developer?

The arrangement of the processing resources in GATE pipeline may be critical for successful annotation. Therefore I was wondering how to properly arrange the processing resources of a pipeline.
enzom83
  • 8,080
  • 10
  • 68
  • 114
1
vote
3 answers

GATE Java error

I know almost nothing about Java so please take it easy on me. I'm using this plugin, which I've had working nicely for a few days on my Mac (following the repo's very simple instructions below), but when I took it to an Ubuntu instance I got the…
tim peterson
  • 23,653
  • 59
  • 177
  • 299
1
vote
1 answer

Use new created plugin on another machine

I am new to GATE-NLP . I have created my own Plugin.It is working fine . But now I want to use it in another machine . I dont want to copy the folder from my machine to anothers plugin folder . How can i do that ?
user5124079
1
vote
1 answer

making link between a person name and pronoun in GATE

Is it possible to make a link between a person name and its PRP? in GATE E.g i have document "Maria Sharapova is a tennis player from russia. She participates in international tennis tournament. She is known for winning Wimbledon, US Open and…
tayybah
  • 91
  • 1
  • 4
1
vote
1 answer

GATE java.lang.NullPointerException?

I am new in GATE and I am using it to conduct the machine learning. The configure file for Batching Learning PR is the following: -
Fan Yang
  • 23
  • 3
1
vote
1 answer

GATE JAPE can't find a string?

I am just a beginner in GATE. I am reading the GATE tutorial module 3 to better understand JAPE(https://gate.ac.uk/sale/talks/gate-course-may10/track-1/module-3-jape/module-3-jape.pdf). However, I met a confusing problem that can't be solved.…
Fan Yang
  • 23
  • 3
1
vote
2 answers

GATE usage in java Netbeans

I am trying to write an application from extracting entities from a text and want to use GATE jar files. For which I have installed the GATE tool and have imported jar files, but it is giving errors. I can't understand from where to download more…
1
vote
0 answers

using GATE 8.0, and trying to populate an ontology using the Jape rule example

I am using GATE 8.0, and trying to populate an ontology using the Jape rule example provided in GUIDE but it doesn't work and the ontology doesn't instantiated!!! Please let me know what it is that I am doing wrong, and your help is greatly…