Text Analysis is an area of study where one uses linguistic, statistical and machine learning tools to analyze a text in order to extract some high quality information from it.

learn more… | top users | synonyms

2
votes
2answers
47 views

Is it possible to check if a short sequence of text is random or not?

Is it possible to check if a short sequence of text, e.g. two or three words, is random or not? My first thought was to calculate the entropy on the string. H("hello world") = 2.84535 H("sdzfjksher") ...
0
votes
1answer
45 views

Neo4j, storing text data in node properties, text analysis & full-text search a requirement

Is it ok to store text data in the graph nodes when text analysis will be a requirement? I have an application in mind involving thousands documents that are interlinked through subject, author, ...
3
votes
1answer
57 views

Python Context Free Grammar and PCFG generation benchmarks?

I know there are various functions to use to general CFGs and PCFGs in Python; however they all seem to differ in speed. E.g.: NLTK, PyParsing. Are there any recent benchmarks comparing various ...
0
votes
1answer
38 views

jquery plugin or c# code to summarize text based on keywords

if i'm showing the user search results in a page is there any jquery plugin or some c# code for summarizing the text based on the keywords user searched for ? for example if the text is : some very ...
2
votes
0answers
67 views

Need help in Web scraping webpages and its links by automatic funciton in R

I am interested to extract the data of paranormal activity reported in news, so that i can analyze the data of space and time of appearance for any correlations. This project is just for fun, to ...
2
votes
2answers
84 views

Find the 10 most frequently occurring words with morphology [closed]

Please tell me how to solve this problem better. I have the text of the Russian and I want to find the 10 most common words with morphology. Maybe there is any open source libraries to solve this ...
0
votes
1answer
42 views

Does wordnet directly present with similarity between synsets?

I have come across several libraries that calculate the similarity between various synsets in Wordnet according to different algorithms. My basic question is whether Wordnet also provides a similarity ...
0
votes
1answer
69 views

PHP judge a string as a human name or other text

The closest existing question I have found is this or this I would like to write a function or class that accepts a string and then based on whatever criteria can be programmed into it will return ...
1
vote
0answers
77 views

How to perform website benchmarking?

I am trying to do competitive analysis of online trends prevailing in real estate domain at state level in a country. I have to create a report which is not biased towards any particular company but ...
0
votes
1answer
47 views

Text Analysis to Solve Multiple Choice Exams

Given a text book and a set of multiple choice questions based on the given text book, in digital form of course, any thoughts on how to have a computer solve the questions? I was thinking something ...
-1
votes
2answers
101 views

Check braces mismatch in a document using c# [closed]

My requirement is to check braces mismatch in if else statements conditions Like IF ( blah, (Blah 01, blah 02) ,[ qwerty, { uuut } ] am here ) THEN (Same here also) END IF I can check for ...
0
votes
3answers
245 views

Grab word and character counts in string

I'm trying to write a super-efficient method that operates in two "modes" (WORD and CHARACTER) that accepts a String and tells me the number of words (separated by 1+ whitespaces) or characters ...
0
votes
1answer
200 views

Getting paragraph count from Tika for both Word and PDF

I have a scenario where I need to reconcile two documents, an Word (.docx) doc as well as a PDF. The two are supposed to be "indentical" to each other (the PDF is just a PDF version of the DOCX file); ...
0
votes
1answer
73 views

Compare Strings proximity in Java

After searching in Google and StackOverflow I couldn't find any resource talking about comparison of strings proximity in Java, I only find results about différence between == and equals... Do one of ...
0
votes
0answers
35 views

Textual analysis of spam emails from spam archives

I trying to implement an anti-spam engine using probabilistic approach. The very first step is to analyse and do some research on types of words and their frequency in spams. So I wrote a very simple ...
0
votes
1answer
67 views

Textanalysis for everyday use and language learning

Hi was learning vocabulary based on a frequency list a few days ago. It was the 5000 most used english words. I would like to be able to generate my own vocabulary list/tables based on word frequency. ...
1
vote
3answers
231 views

How to find 'similar' records in a MySQL table based on 'title' and 'description' columns?

I have a MySQL table storing some user generated content. For each piece of content, I have a title (VARCHAR 255) and a description (TEXT) column. When a user is viewing a record, I want to find ...
0
votes
1answer
811 views

Very simple text classification by machine learning? [duplicate]

Possible Duplicate: Text Classification into Categories I am currently working on a solution to get the type of food served in a database with 10k restaurants based on their description. ...
0
votes
2answers
188 views

Clustering words into groups

This is a Homework question. I have a huge document full of words. My challenge is to classify these words into different groups/clusters that adequately represent the words. My strategy to deal with ...
1
vote
2answers
45 views

Fast way to search based on non-literal comparison

Fast way to search based on non-literal comparison I am developing a small search over rather large data sets, basically all strings. The relation between the table fields are simple enough, though ...
1
vote
1answer
127 views

Find “near duplicates” strings in R

I am using R to build a sentiment analysis tool and I am having some problems with duplicates. The main source of data is Twitter, and it looks like many are bypassing twitter own spam filter by ...
-5
votes
1answer
46 views

Classify an English word into its superclass

Given a word, how to classify it into its superclass? For example, if the word is: 'Christian', how do I classify it as a 'Religion'. And if the word is 'Barack', how do I classify it as a 'Name' ...
0
votes
1answer
83 views

postgresql phrase extraction & ranking

From selected rows in a table, how can one extract and rank phrases based on how often they occur? example 1: http://developer.yahoo.com/search/content/V1/termExtraction.html example 2: ...
2
votes
1answer
97 views

How to recognize if word has no meaning, maybe some impossible syllables?

Initially, I have m arrays of n characters, where each array contains unknown (for me) character of needed word (condition: word has meaning). For example, m = 4, n = 3: array0 = {'t', 'e', 'c'}, ...
0
votes
0answers
64 views

How to gauge or compare relative frequency of arbitrary words without a search engine API?

More than a few times I've wanted to programmatically pick the better of two words or phrase using frequency of use on the Internet as a heuristic. The obvious way, and the way to do it manually, is ...
1
vote
4answers
348 views

Calculate correlation coefficient between words?

For a text analysis program, I would like to analyze the co-occurrence of certain words in a text. For example, I would like to see that e.g. the words "Barack" and "Obama" appear more often together ...
0
votes
0answers
83 views

writing tools in Google Docs

As a programmer and fiction writer, I'm wondering if it is possible to write tools specific to writers (more than just word-count) and integrate that into Google Docs? Ideally, this would be a tool ...
3
votes
4answers
231 views

What libraries offer basic or advanced NLP methods?

I'm doing a survey of different libraries and systems for NLP applications. I am looking for ones I have missed. The list I started with keeps growing so I am certain there are more out there. Here is ...
0
votes
2answers
122 views

How to parse a loosely structured document

I am analyzing data feeds which have data somewhat like this RAM 4 GB DDR3 RAM 16GB DIMM memory 4GB DDR3 MHz // no value for MHz memory 4GB DDR3 1333 MHz // no the order of MHz is not ...
7
votes
2answers
950 views

Extracting terms with contextual relevance (noun phrases) from text in a .NET project

I would like to figure out a good way to perform term extraction on freeform consumer text data. In an ideal scenario I could extract noun phrases of at least two words that include some kind of ...
1
vote
2answers
370 views

Removing an “empty” character item from a corpus of documents in R?

I am using the tm and lda packages in R to topic model a corpus of news articles. However, I am getting a "non-character" problem represented as "" that is messing up my topics. Here is my workflow: ...
0
votes
0answers
577 views

tm Package error: Error definining Document Term Matrix

I am analyzing the Reuters 21578 corpus, all the Reuters news articles from 1987, using the "tm" package. After importing the XML files into an R data file, I clean the text--convert to plaintext, ...
0
votes
1answer
464 views

Term Document Frequencies in Java with Lucene/Lingpipe in a large corpus

I am trying to analyze a large corpus of documents, which are in a huge file (3.5GB, 300K lines, 300K documents), one document per line. In this process I am using Lucene for indexing and Lingpipe for ...
1
vote
1answer
370 views

Why isn't Stanford Topic Modeling Toolbox producing lda-output directory?

I tried to run this code from github (following the 1-2-3 steps) which identifies 30 topics in Sarah Palin's 14,500 emails. The topics discovered by the author are here. However, Stanford Topic ...
1
vote
1answer
314 views

Why the 30 topics identified by Stanford Topic Modeling Toolkit so similar to each other?

What can be the possible reasons why the 30 topics identified by Stanford Topic Modeling Toolkit (it took ~4 hours) on the corpus of 19,500 articles (shared by Twitter users) so similar to each other? ...
1
vote
2answers
199 views

How to determine the proper weights for metric scores

I'm doing some personal research into text analysis, and have come up with close to 70 metrics (pronoun usage frequency, reading levels, vowel frequency, use of bullet points, etc) to "score" a piece ...
2
votes
2answers
193 views

Sources of classified sentiment data?

I'm looking to train a naive Bayes with some new data sources that haven't been used before. I've already looked at the Lee & Pang corpus of IMDB reviews and the MPQA opinion corpus. I'm looking ...
0
votes
1answer
73 views

Better approach to filtering Wikipedia edits

When you are watching for news of particular Wikipedia article via its RSS channel, its annoying without filtering the information, because most of the edits is spam, vandalism, minor edits etc. My ...
2
votes
3answers
388 views

Get important words in title java library [closed]

Is there any java library that with given text (title) gets collection of important words in it. EDITED: By important I mean the one that has define the main idea of the sentence. Thank You.
0
votes
1answer
354 views

Exact phrase search using lucene without increasing number of fields

For a phrase search, we want to bring up results only if there's an exact match (without ignoring stopwords). If it's a non-phrase search, we are fine displaying results even if the root form of the ...
7
votes
2answers
535 views

Efficient Lemmatizer that avoids dictionary lookup

I want to convert string like 'eat' to 'eating', 'eats'. I searched and found the lemmatization as the solution, but all the lemmatizer tools that I have come across uses wordlist or ...
1
vote
0answers
124 views

How does Microsoft Language Detection compare to LingPipe? [closed]

How does Microsoft Language Detection ( MSDN reference ) compare to LingPipe ( Language ID ) and other widely used tools for language identification?
3
votes
3answers
110 views

Prioritizing text based on content

If you have a list of texts and a person interested in certain topics what are the algorithms dealing with choosing the most relevant text for a given person? I believe that this is quite a complex ...
1
vote
1answer
263 views

Simple keyword / key phrase analysis in Ruby

I would like to create a simple list of popular keywords or phrases within tweets containing a specific hashtag. For example, for all tweets with the '#justinbieber' hashtag, I would like to obtain ...
12
votes
4answers
3k views

Training data for sentiment analysis

Where can I get a corpus of documents that have already been classified as positive/negative for sentiment in the corporate domain? I want a large corpus of documents that provide reviews for ...
1
vote
2answers
203 views

Can extract generic entities using Lingpipe other than People, Org and Loc?

I have read through Lingpipe for NLP and found that we have a capability there to identify mentions of names of people, locations and organizations. My questions is that if I have a training set of ...
5
votes
5answers
545 views

Check if a string is a possible abbrevation for a name

I'm trying to develop a python algorithm to check if a string could be an abbrevation for another word. For example fck is a match for fc kopenhavn because it matches the first characters of the ...
2
votes
1answer
225 views

How to create templates from html page automatically?

I have a use case in which I need to render an unformatted text in the format of a given web page programmatically in Java. i.e. The text should automatically be formatted like the web page with ...
0
votes
1answer
222 views

textalyser functionality using Python

Which Python based library is out that gives the text-analysis functionality similar to the http://textalyser.net/
1
vote
1answer
777 views

How to compile java file which calls MeCab - Japanese part-of-speech & morphological analyzer?

I'm trying to use MeCab (http://mecab.sourceforge.net/#download) to do the word segmentation of Japanese sentences as well to tag every word by part of speech. I installed MeCab by following these ...

1 2