0
votes
5answers
148 views
How to define person’s names in text (Java)
I have some input text, which contains one or more human person names. I do not have any dictionary for these names. Which Java library can help me to define names from my input text?
I looked through …
1
vote
4answers
53 views
Java Stanford NLP: Part of Speech labels?
The Stanford NLP, demo'd here, gives an output like this:
Colorless/JJ green/JJ ideas/NNS sleep/VBP furiously/RB ./.
What do the Part of Speech tags mean? I am unable to find an official list. Is …
0
votes
1answer
52 views
Java: Multidimensional Scaling?
I'm doing a Natural Language Processing project where I compute a bunch of attributes of a text, giving me a vector of values for each text. I want to compare these vectors with multidimensional …
0
votes
1answer
33 views
Java Stanford NLP: Spell checking
I'm trying to check spelling accuracy of text samples using the Stanford NLP. It's just a metric of the text, not a filter or anything, so if it's off by a bit it's fine, as long as the error is …
0
votes
1answer
25 views
How does AraMorph 1.2.1 work?
I have downloaded AraMorph 1.2.1 Perl version from SourceForge, but I do not know how to use it. Could someone explain to me how can I get it to work?
2
votes
9answers
235 views
Natural Language Processing: Find obscenities in English?
Given a set of words tagged for part of speech, I want to find those that are obscenities in mainstream English. How might I do this? Should I just make a huge list, and check for the presence of …
2
votes
4answers
59 views
Calculating context-sensitive text correlation
Suppose I want to match address records (or person names or whatever) against each other to merge records that are most likely referring to the same address. Basically, I guess I would like to …
0
votes
2answers
123 views
which is better… GATE or RapidMiner…
hi,
I've started to write a simple sentiment analysis tool
currently i am looking @ GATE (http://gate.ac.uk) and RapidMiner (http://rapid-i.com/)
Being a beginner not able to concentrate on both...
…
0
votes
1answer
53 views
Java Stanford NLP: Find word frequency?
I'm using the Stanford NLP Parsing toolkit. Given a word in the lexicon, how can I find its frequency*? Or, given a frequency rank, how can I determine the corresponding word?
*in the entire …
2
votes
4answers
45 views
Computing precision and recall in Named Entity Recognition
Hi,
Now I am about to report the results from Named Entity Recognition. One thing that I find a bit confusing is that my understanding of precision and recall was that one simply sums up true …
10
votes
9answers
246 views
Ideas for Natural Language Processing project?
I have to do a final project for my computational linguistics class. We've been using OCaml the entire time, but I also have familiarity with Java. We've studied morphology, FSMs, collecting parse …
0
votes
1answer
57 views
Should I use LingPipe or NLTK for extracting names and places?
I'm looking to extract names and places from very short bursts of text example
"cardinals vs jays in toronto"
" Daniel Nestor and Nenad Zimonjic play Jonas Bjorkman w/ Kevin Ullyett, paris time to …
2
votes
2answers
73 views
c/c++ NLP library
I am looking for an open source Natural Language Processing library for c/c++ and especially i am interested in Part of speech tagging.
1
vote
3answers
106 views
Natural language command language
I'm interested in developing a natural language command language for a domain with existing rules. I was very impressed when Terry Winograd's SHRDLU showed the way (the conversation below is 40 years …
3
votes
0answers
64 views
can NLTK/pyNLTK work “per language” (i.e. non-english), and how?
how can I tell nltk to treat the text in a particular language?
BKG: once in a while i write a specialized NLP routine to do POS tagging, tokenizing etc. on a non-english (but still hindo-european) …
