Tagged Questions
GATE is a special framework developed for solving text and natural language processing problems.
3
votes
1answer
724 views
Tool to draw logic gates from text
Is there a tool to draw out logic gates / the circuit diagram from a textual description of those gates (such as HDL)? Thank you.
1
vote
3answers
72 views
Partial match on a dictionary
I am working with GATE (Java Based NLP Framework) and want to find words with partial match with a dictionary.
For example I have a disease dictionary with following terms
Congestive cardiac failure
...
1
vote
0answers
41 views
Fan gate / Like page not working with new apps
from few days ago, this:
<?php $signed_request = $_REQUEST["signed_request"];
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
$data = json_decode(base64_decode(strtr($payload, ...
1
vote
0answers
43 views
Difficulty using JAPE Grammer
I have a document which contains sections such as Assessments, HPI, ROS, Vitals etc.
I want to extract notes in each section. I am using GATE for this purpose. I have made a JAPE file which will ...
1
vote
1answer
272 views
USE (NLP) GATE TOOL FOR NAMED-ENTITY
Can I use GATE http://gate.ac.uk/ within my java program to extract named-entity. If yes, could you give any examples or guide me to some sources. Thank you
1
vote
0answers
129 views
How to run GATE/JAPE for non English language?
I would like to use JAPE/GATE to my own mother language (not English), as my documents are already tokenized and POS Tag.
So how can I let GATE load my documents as resource for processing?
1
vote
2answers
1k views
Natural Language Processing in C++
I'm working on a project that already has a C++ base. I would like to have a plug-in for some natural language processing. I really like GATE but I'm not sure if it's worth launching the JVM and ...
0
votes
1answer
94 views
ANTLR for Writing JAPE Grammar
I am using GATE to process texts written in natural language. I have to extract height, weight, bp etc from the text and store it in structured form. Now, these things(i.e height, weight etc) can be ...
0
votes
2answers
154 views
Grammar with Gate ANNIE
Hello I have been trying to work on information retrieval for quite sometime and have been facing some difficulties.
Recently I downloaded StandAloneAnnie.java from following link
...
0
votes
1answer
187 views
java gate api. Creating pipeline with success, how can i get the annotationsets from the docs processed?
sorry in advance for my poor grammar.
I have created a pipeline with GATE API, i run it successfully.
I created a serialanalysercontroller like this: pipeline = ...
0
votes
2answers
583 views
Run GATE pipeline from inside a Java program without the GUI. build a tomcat app with gate
i have built some plugin components to GATE and in combination with ANNIE tools, im running a pipeline in GATE platform.
Does anyone know how can i run a pipeline from the console? I want to build ...