Tagged Questions

2
votes
2answers
51 views

Is there any JVM that runs on a CBE?

I'm designing a question-answering system using Apache-UIMA. The system should finally run on a IBM Cell-Broadband-Engine processor(PS3). I'm planning to design the whole thing in Java. But I'm not ...
1
vote
1answer
42 views

Recommended method for getting character positions of all HTML tags in a document

So regular expressions may have side-effects. What, then, is the preferred method of getting the start and end character positions of all HTML tags in a document? Parsing libraries such as Jsoup and ...
1
vote
2answers
291 views

Examples for using Apache UIMA in a java program

I have been searching for examples of using Apache UIMA in a java program. Are there examples on how to use the example Annotators in a Java program ?
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
44 views

Java Regex to find instances of “[” in a string

I'm currently working on a UIMA based project, and the data set I am using has some predefined plain-text annotations that I am trying to convert into UIMA annotations using the Matcher utility. My ...
0
votes
1answer
157 views

What Java framework might I use to provide a robust document conversion service?

I am starting a new open source project to develop an application that will provide services to convert various documents into other formats (E.g. doc -> html, pdf -> html, plain text -> html, etc). ...