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

comparison of natural language processing tools (UIMA, LingPipe, Lucene, Gate, Stanford)

I want to choose a natural language processing tool to do common tasks such as tokenization, sentence detection,various tagging (Name Entity Recognition, POS tagging, ... ). my question has two parts: What are the criteria for choosing a natural…
aliakbarian
  • 709
  • 1
  • 11
  • 20
1
vote
2 answers

Named entity recognition promlem to identify the text "next monday" as date?

I'm new to text mining and NLP. I'm trying to use named entity recognition (NER) (Stanford Named Entity Tagger) to extract dates from the given text. I'm using the online demo provided in Stanford NLP http://nlp.stanford.edu:8080/ner/process and…
Suren Raju
  • 3,012
  • 6
  • 26
  • 48
1
vote
1 answer

Gate/Jape in Spanish

I read in many sites and they said that Gate supports Spanish but I did not find how to analyze Spanish text with Gate. I tried with the treetagger but I get the error:TreeTagger\tree-tagger-spanish-gate": CreateProcess error=193, %1 no es una…
mtrebi
  • 267
  • 1
  • 5
  • 19
1
vote
2 answers

getting GATE embedded to work with gateHome inside a JAR

I'm trying to distribute a GATE application as a standalone JAR file. I have the GATE plugins as resources on my classpath in the project, but setGateHome() requires a File object, which I can't get from a resource packaged inside a JAR. I assumed…
bcoughlan
  • 25,987
  • 18
  • 90
  • 141
1
vote
1 answer

How to make a "Like Gate"

I would like to be able to check if a visitor has liked an arbitrary site. That is, without have to get permissions or login or interact any way with Facebook from our site. At first I thought I could use FQL but I need access to the visitors user…
speg
  • 1,959
  • 6
  • 24
  • 34
1
vote
1 answer

Index GATE annotations in SOLR

I need to index all the annotations and features generated after GATE processing into SOLR. I need to search upon annotations as well as features. What is the best way to do this? I would prefer moving processing to hadoop. I am using behemoth at…
madzie
  • 47
  • 1
  • 9
1
vote
0 answers

GATE: In ANNIE, Extracting named entities after running Pronominal Coreference module

Summary: From the GATE site there is this example. http://gate.ac.uk/wiki/jape-repository/coordinated-annotations.html#section-3. This rule references a result that only occurs after running the co-reference module. Is there a way to extract the…
Transcendence
  • 2,616
  • 3
  • 21
  • 31
1
vote
1 answer

How to bridge the gap between Wikipedia database dump and GATE?

the overall task is do NLP on Wikipedia pages. First thing is to access the downloaded Wikipedia database dump(40GB XML file) from GATE in a good way? Actually, I need only the medical category. is there some libraries for this? any hints is…
Matt
  • 741
  • 1
  • 6
  • 17
1
vote
1 answer

I want to use The GATE Predicate-Argument EXtractor Component (PAX)

I want to use The GATE Predicate-Argument EXtractor Component (PAX), but I can't figure out how to load the plugin on GATE developer (ver. 7) Please help me. How do I load it?
yeonho
  • 11
  • 1
1
vote
1 answer

Unable to locate Spring NamespaceHandler for XML schema namespace issue

I'm having this weird problem of " Unable to locate Spring NamespaceHandler for XML schema namespace". I'm referencing GATE namespace in my spring application context. It's an executable jar in which a java class instantiates the spring application…
Shamik
  • 1,671
  • 11
  • 36
  • 64
1
vote
2 answers

Gate setup: official TestGate.java cannot run

new to Gate, actually also not old to Java and Eclipse ;) and want to run the first test of setup. what I have done: download gate-7.0-build4195-ALL and unzip it to C:\ change enviroment variable CLASSPATH to…
Matt
  • 741
  • 1
  • 6
  • 17
1
vote
3 answers

How to read a paragraph in natural language processing GATE

I am using GATE tool for natural language processing.. i am using java code to read lines from the sentence and get the keywords.. what modification has to be done in creole xml to read complete paragraph..
0
votes
0 answers

Jape Grammer Rule Runs infinitely in Annie

My jape grammer looks as below, Phase: PhoneFinder Input: Token Options: control = appelt debug = false Rule: PhoneRule ( {Token.kind == number,Token.category == CD,Token.length == 10} | ( ({Token.kind == punctuation, Token.category == "("})?…
0
votes
1 answer

GATE extract NE from documents in German

I need to extract people names from documents in German (not my native). After a bit of search, I've found GATE framework which seems to support English, German and many other languages. The accuracy for English is quite decent, but it's…
Sebastian Lore
  • 357
  • 4
  • 23
0
votes
0 answers

How I can use GATE API in python application?

I made corpus pipeline application in GATE(General Architectural for Text Engineering) for annotating files, can I use the corpus pipeline Application out of GATE as API in python?