0
votes
1answer
49 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
29 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 …
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 …
2
votes
9answers
232 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 …
1
vote
4answers
51 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
51 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
2answers
70 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.
3
votes
0answers
59 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) …
10
votes
9answers
242 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 …
3
votes
2answers
132 views
Clustering text in Python
I need to cluster some text documents and have been researching various options. It looks like LingPipe can cluster plain text without prior conversion (to vector space etc), but it's the only tool …
0
votes
3answers
100 views
Python and .NET integration
I'm currently looking at python because I really like the text parsing capabilities and the nltk library, but traditionally I am a .Net/C# programmer. I don't think IronPython is an integration point …
1
vote
3answers
93 views
what is the true difference between lemmatization vs stemming?
When do I use each ?
Also...is the NLTK lemmatization dependent upon Parts of Speech?
Wouldn't it be more accurate if it was?
2
votes
4answers
42 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 …
3
votes
7answers
165 views
find some sentences
Hi,
I'd like to find good way to find some (let it be two) sentences in some text. What will be better - use regexp or split-method? Your ideas?
As requested by Jeremy Stein - there are some examples
…
0
votes
1answer
58 views
Extracting pure content / text from HTML Pages by excluding navigation and chrome content
Hi,
I am crawling news websites and want to extract News Title, News Abstract (First Paragraph), etc
I plugged into the webkit parser code to easily navigate webpage as a tree. To eliminate …
