Tagged Questions
Text Mining is a process of deriving high-quality information from unstructured (textual) information.
21
votes
4answers
6k views
What is “entropy and information gain”?
I am reading this book (NLTK) and it is confusing. Entropy is defined as:
Entropy is the sum of the probability of each label
times the log probability of that same label
How can I apply ...
15
votes
10answers
1k views
How to determine the (natural) language of a document?
I have a set of documents in two languages: English and German. There is no usable meta information about these documents, a program can look at the content only. Based on that, the program has to ...
14
votes
7answers
693 views
Large scale Machine Learning
I need to run various machine learning techniques on a big dataset (10-100 billions records)
The problems are mostly around text mining/information extraction and include various kernel techniques but ...
10
votes
3answers
156 views
Algorithm (or C# library) for identifying 'keywords' in a set of messages?
I want to build a list of ~6 keywords (or even better: couple word keyphrases) for each message in a message forum.
The primary use of keywords is to replace subject lines in some instances. For ...
10
votes
6answers
614 views
Are there APIs for text analysis/mining in Java?
I want to know if there is an API to do text analysis in Java. Something that can extract all words in a text, separate words, expressions, etc. Something that can inform if a word found is a number, ...
8
votes
10answers
1k views
Crawling The Internet
I want to crawl for specific things. Specifically events that are taking place like concerts, movies, art gallery openings, etc, etc. Anything that one might spend time going to.
How do I implement a ...
7
votes
2answers
109 views
Counting syllables with R
I'm looking to assign some different readability scores to text in R such as the Flesh Kincaid.
Does anyone know of a way to segment words into syllables using R? I don't necessarily need the ...
6
votes
1answer
339 views
Perl within Python?
There is a Perl library I would like to access from within Python.
How can I use it?
FYI, the software is NCleaner. I would like to use it from within Python to transform an HTML string into text. ...
5
votes
1answer
114 views
The relationship between latent Dirichlet allocation and documents clustering
I would like to clarify the relationship between latent Dirichlet allocation (LDA) and the generic task of document clustering.
The LDA analysis tends to output the topic proportions for each ...
5
votes
4answers
561 views
Python or Java for text processing (text mining, information retrieval, natural language processing)
I'm soon to start on a new project where I am going to do lots of text processing tasks like searching, categorization/classifying, clustering, and so on.
There's going to be a huge amount of ...
5
votes
2answers
271 views
What training data sources could be used for sentiment classification models?
I'm looking for ideas about data sources which have or could potentially be used. I'm not interested in pre-existing libraries or tools. Both annotated and unannotated data are of interest, for ...
5
votes
3answers
493 views
How to identify ideas and concepts in a given text
I'm working on a project at the moment where it would be really useful to be able to detect when a certain topic/idea is mentioned in a body of text. For instance, if the text contained:
Maybe if ...
5
votes
2answers
694 views
Text mining, fact extraction, semantic analysis using .Net
I'm looking for any free tools/components/libraries that allow me to take anvantage of text mining, fact extraction and semantic analysis in my .NET application.
The GATE project is what I need but ...
4
votes
1answer
66 views
Data Mining situation
Suppose I have the data as mentioned below.
11AM user1 Brush
11:05AM user1 Prep Brakfast
11:10AM user1 eat Breakfast
11:15AM user1 Take bath
11:30AM user1 Leave for office
12PM user2 Brush
...
4
votes
2answers
192 views
Latent Semantic Analysis concepts
I've read about using Singular Value Decomposition (SVD) to do Latent Semantic Analysis (LSA) in corpus of texts. I've understood how to do that, also I understand mathematical concepts of SVD.
But ...
4
votes
3answers
208 views
Word Net - Word Synonyms & related word constructs - Java or Python
I am looking to use WordNet to look for a collection of like terms from a base set of terms.
For example, the word 'discouraged' - potential synonyms could be: daunted, glum, deterred, pessimistic.
...
4
votes
1answer
103 views
R text mining package: Allowing to incorporate new documents into an existing corpus
I was wondering if there is any chance of R's text mining package having the following feature:
myCorpus <- Corpus(DirSource(<directory-contatining-textfiles>),control=...)
# add docs
...
4
votes
1answer
203 views
Liblinear how to use it
I'm fairly new at machine learning and text mining in general. It has come to my attention the presence of a ruby library called Liblinear https://github.com/tomz/liblinear-ruby-swig.
What I want to ...
4
votes
3answers
298 views
What is a good approach for extracting keywords from user-submitted text?
I'm building a site that allows users to make sense of a debate by graphically representing arguments for and against a particular issue. (Wrangl)
I'd like to categorise these debates so they are ...
4
votes
3answers
293 views
Indexing and Searching Over Word Level Annotation Layers in Lucene
I have a data set with multiple layers of annotation over the underlying text, such as part-of-tags, chunks from a shallow parser, name entities, and others from various natural language processing ...
4
votes
3answers
3k views
Which NLP toolkit to use in JAVA?
i'm working on a project that consists of a website that connects to the NCBI(National Center for Biotechnology Information) and searches for articles there. Thing is that I have to do some text ...
3
votes
3answers
94 views
phonetic spelling in Python and Java
I am trying to build a system that accepts text and outputs the phonetic spelling of the words of this text. Any ideas on what libraries can be used in Python and Java?
3
votes
2answers
117 views
Detect text language in R
In R I have a list of tweets and I would like to keep only those that are in English.
I am wondering if any of you know an R package that provides a simple way to identify the language of a string.
...
3
votes
1answer
66 views
Can I perform Generalized Iterative Scaling in R?
I'm looking to port our homegrown platform of various machine learning algorithms from C# to a more robust data mining platform such as R. While it's obvious R is great at many types of data mining ...
3
votes
1answer
154 views
Java implementation of singular value decomposition for large sparse matrices
I'm just wondering if anyone out there knows of a java implementation of singular value decomposition (SVD) for large sparse matrices? I need this implementation for latent semantic analysis (LSA).
I ...
3
votes
5answers
326 views
Classify words to “good” and “bad”
I have a list of domain names and want to determine is name of domain looks like it is porno site or not. What the better way to do this? List of porn domains looks like http://dumpz.org/56957/ . This ...
3
votes
1answer
362 views
How to classify words to their correspoding categories?
I've to implement text classification for a long list of words. I've some categories defined e.g. If the word "UK" is in the list, it will come under "Regions". If the word is "Pizza", it will come ...
3
votes
3answers
249 views
term clustering library?
Does anybody know an open-source\free library that does term clustering?
Thanks,
yaniv
3
votes
3answers
632 views
Find HEX patterns and number of occurrences
I'd like to find patterns and sort them by number of occurrences on an HEX file I have.
I am not looking for some specific pattern, just to make some statistics of the occurrences happening there and ...
3
votes
4answers
626 views
Looking for an information retrival / text mining application or library
We extract various information from e-mails - flights, car rentals, hotels and more. the method is to extract the body of the mail, usually in HTML form but sometime it's text or we use the ...
3
votes
1answer
91 views
Background reading for parsing sloppy / quirky / “almost structured” data?
I'm maintaining a program that needs to parse out data that is present in an "almost structured" form in text. i.e. various programs that produce it use slightly different formats, it may have been ...
2
votes
3answers
85 views
R Regular Expression Lookbehind
I have a vector filled with strings of the following format: <year1><year2><id1><id2>
the first entries of the vector looks like this:
199719982001
199719982002
199719982003
...
2
votes
1answer
141 views
Text mining on Facebook public page
I'm a graduate student. I would like to do a text mining on Facebook public pages for my research. Anybody knows how to export all the wall comments posted on a particular public page into csv or ...
2
votes
1answer
88 views
package tm. problems with kmeans
I have a question about k-means clustering in R. Actually i'm doing everything according to this article. Everything is based on examples within the tm package so it's required no data import. acq ...
2
votes
4answers
232 views
What language can be recommended for text mining/parsing? [closed]
I'm doing some text mining in web pages. Currently I'm working with Java, but maybe there is more appropriate languages to do what I want.
Example of some things I want to do:
Determine the char ...
2
votes
1answer
156 views
Text Mining on huge list of strings
I have list of strings. (pretty big list of ids and strings scattered in 4-5 big files. around a GB each). These strings are formatted like this:
1,Hi
2,Hi How r u?
2,How r u?
3,where r u?
3,what ...
2
votes
1answer
161 views
WEKA - Classifyin​g New Data from Java - IDF Transform
We are trying to implement a WEKA classifier from inside a Java program. So far so good, everything works well however when building the classifier from the training set in Weka GUI we used the ...
2
votes
1answer
105 views
Rattle loading String to Vector file from WEKA
I have been using WEKA to do some text classification work and I want to try
out R.
The problem is I cannot load the String to Vector ARFF files created by
WEKA's string parser into Rattle .
Looking ...
2
votes
4answers
153 views
Pure statistical, or Natural Language Processing engine?
What are the statistical engines that yield better results than the OpenNLP suite of tools, if any? What I'm looking for is an engine that picks keywords from texts and provides stemming on those ...
2
votes
2answers
207 views
How to access Wikipedia from R?
Is there any package for R that allows querying Wikipedia (most probably using Mediawiki API) to get list of available articles relevant to such query, as well as import selected articles for text ...
2
votes
2answers
139 views
Algorithms for mapping data in data mining
I need to scrape some webpages and extract content from them. I'm planning to select some specific keywords and map the data that has some relationship b/w them. But I have no Idea, how I could do ...
2
votes
1answer
463 views
Log likelihood to implement Naive Bayes for Text Classification
I am implementing Naive Bayes algorithm for text classification. I have ~1000 documents for training and 400 documents for testing. I think I've implemented training part correctly, but I am confused ...
2
votes
1answer
94 views
Book and article references sought for starting out with document classification
I am interested in doing a project on document classification and have been looking for books that could be useful for the theoretical parts in text mining related to this or examples of articles ...
2
votes
2answers
192 views
Full Text PDFs for PubMed Articles
While working on a project I need to download and process full text articles for PubMed abstracts, is there any implemented code or tool that allows the user to input a set of PubMed ids and downloads ...
2
votes
1answer
266 views
Paraphrase recognition using sentence level similarity
I'm a new entrant into the NLP(Natural Language processing.As a start up project i'm developing a paraphrase recognizer(a system which can recognize two similar sentences).For that recognizer i'm ...
2
votes
4answers
140 views
Does anyone know of any useful data mining or web crawling services?
I know what I'm asking for is pretty vague, but anything that comes to mind would be great - I'm just really interested in data analytics on the internet.
2
votes
1answer
470 views
Lucene Entity Extraction
Given a finite dictionary of entity terms, I'm looking for a way to do Entity Extraction with intelligent tagging using Lucene. Currently I've been able to use Lucene for:
- Searching for complex ...
2
votes
2answers
469 views
Text Retrieval using R
I have been using R's text mining package and its really a great tool. I have not found retrieval support or maybe there are functionalities I am missing.
How can a simple VSM model be implemented ...
2
votes
3answers
476 views
Is there a better way to create Keyword frequency table in R?
I want to take a csv export of my bibtex literature database and analyse the correlation between keywords and Journals. I start off with a csv file containing one row per piece of literature, each ...
2
votes
5answers
647 views
Text classification/categorization algorithm
My objective is to [semi]automatically assign texts to different categories. There's a set of user defined categories and a set of texts for each category. The ideal algorithm should be able to learn ...