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

GATE ontology editor with Arabic lang

Dears, I use Gate Developer 8.5, and Ontology plugin, Ontology Editor : I load my initial file "test.owl", its classes' names were written in Arabic Language, but when I try to update this file , like adding sub class and try to write its name…
Suzn CB
  • 1
  • 4
0
votes
2 answers

Is it possible to retrieve the entire list of named AnnotationSets in GATE?

is it possible to retrieve the entire list of an Annotation Set in GATE? This line of code returns all the items of a GATE document that belong to the AnnotationSet called "EMail"; AnnotationSet annSet = doc.getAnnotations().get("EMail"); Now, how…
user12504321
0
votes
0 answers

GATE Tool: changing text during XML annotation

I am trying to XML annotate my document, the XML tags of data are correct but the tool is adding some extra letters. Is there any way to fix it? before tool: after tool: output setting:
BytesxD
  • 11
  • 3
0
votes
0 answers

Ontology Plugin Not Available

I'm trying to load the Ontology Plugin in GATE 8.6 from https://github.com/GateNLP/gateplugin-Ontology/releases. The error is: Problem while parsing plugin Ontology! java.io.FileNotFoundException: …
0
votes
1 answer

AnnotationSet method get is not returning the set

I am new to the GATE here, I am using java for the integration. Now, I have some rules on that basis I got some annotations. I am trying to get the particular type of annotations within that range. So, I've written below code, public AnnotationSet…
ganesh kaspate
  • 1
  • 9
  • 41
  • 88
0
votes
1 answer

why GATE doesn't match words in my Arabic gazetteer list?

I've built my list that contains some Arabic words, then add a record related to this list in the def file and put the two files in the same directory then in my java code I've written: FeatureMap params =…
Suzn CB
  • 1
  • 4
0
votes
1 answer

duplicate output using writeLine in Groovy

I am using the following code to output annotations to csv: new File(scriptParams.outputFile).withWriterAppend{ out -> ([Default:(doc.getAnnotations("MS").get("EDSS"))]).each{setName, set -> set.each{ anno -> anno.getFeatures().each{ …
brucezepplin
  • 9,202
  • 26
  • 76
  • 129
0
votes
1 answer

Java library : Gate Creole ResourceInstantiationException

I am using GATE library and am getting the error gate.creole.ResourceInstantiationException: Couldn't get resource data for com.jpetrak.gate.stringannotation.extendedgazetteer2.ExtendedGazetteer2. You may need first to load the plugin that contains…
guroosh
  • 642
  • 6
  • 18
0
votes
1 answer

Gate/ANNIE when using a corpus with many documents

I'm working on a project with the platform GATE using the ANNIE plugin, unfortunately when I try to run the Annie application to a large number of documents GATE freezes and stops working, so I have only to shut him down. Is this an issue of my…
0
votes
1 answer

Gate 4.0 installation issues with windows 10

I am trying to install Gate 4.0 on my Windows 10 operating system. I am getting this error: I have jdk installed with 1.7 version following screen shot shows the version I have set the JAVA_HOME, path and CLASSPATH. Note that I have…
0
votes
1 answer

Extract Original Markups tags as annotation Set in Gate NLP

I am trying to extract html li tag,as shown in image below, as AnnotationSet and use it up for further processing in java. Is it possible to do so?
Aniz
  • 131
  • 5
0
votes
1 answer

Gate : breakline after each loop in groovy

i have this code that prints in the same line after each loop. For example: "categorie=extragraphique","remarque=confusion_consonne","mot=article","categorie=logogrammique","remarque=aposthrophe","mot=conjonction" i would like a linebreak after each…
0
votes
1 answer

Add list of all contained annotations as features of new annotation in GATE

I am trying to add a list of all contained "all_tags" annotations as a feature of a new annotation using Java RHS rule. Below only adds one annotation rather than all of them in a list: AnnotationSet contTagAS =…
FJ1993
  • 115
  • 1
  • 8
0
votes
1 answer

how to handle XML file in RapidMiner?

I have obtained XML file from Gate after doing emotion analysis and I need to handle it in Rapidminer in order to visualize it.Do you have suggestions how to do this? does rapidminer accept XML files?
user3052503
  • 35
  • 2
  • 12
0
votes
0 answers

JAPE grammar sentence boundaries in GATE

please if I need to specify to check the pattern if it in one sentence or not? My patterns are: {person} {Token}* {Token.string = "call"} {Token}* {person} to be in one sentence. how could I do this please using JAPE Thank you
SFS
  • 31
  • 6