Document classification is the act of assigning documents from a given set of documents to any of a number of classes, where those classes are known a priori.

learn more… | top users | synonyms

10
votes
5answers
1k views

What tried and true algorithms for suggesting related articles are out there?

Pretty common situation, I'd wager. You have a blog or news site and you have plenty of articles or blags or whatever you call them, and you want to, at the bottom of each, suggest others that seem to ...
8
votes
9answers
852 views

Understanding Bayes' Theorem

I'm working on an implementation of A Naive Bayes Classifier. Programming Collective Intelligence introduces this subject by describing Bayes Theorem as: Pr(A | B) = Pr(B | A) x Pr(A)/Pr(B) As well ...
5
votes
6answers
305 views

Bucketing sentences by mood

Let's start with a simple problem. Let's say that I have a 350 char sentence and would like to bucket the sentence into either a "Good mood" bucket or a "Bad mood" bucket. What would be the best way ...
5
votes
2answers
273 views

SQL classification

I have a system that tracks what documents users view. Each document has its ID and a cluster that it belongs to. My system tracks the session ID and the number of views. I would now like to construct ...
4
votes
3answers
381 views

How to include words as numerical feature in classification

Whats the best method to use the words itself as the features in any machine learning algorithm ? The problem I have to extract word related feature from a particular paragraph. Should I use the ...
4
votes
5answers
2k 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 ...
4
votes
3answers
385 views

Which classification algorithm can be used for document categorization?

Hey, Here is my problem, Given a set of documents I need to assign each document to a predefined category. I was going to use the n-gram approach to represent the text-content of each document and ...
4
votes
3answers
448 views

Algorithms used for programmatic classification of recipes

I'm interested in classifying recipes programmatically based on a statistical analysis of various properties of the recipe. In other words, I want to classify a recipe as Breakfast, Lunch, Dinner or ...
4
votes
2answers
535 views

Document clasification, using genetic algorithms

I have a bit of a problem with my project for the university. I have to implement document classification using genetic algorithm. I've had a look at this example and (lets say) understood the ...
4
votes
2answers
2k views

SVM Multiclass text classification

I want to classfy News data set and training data are classified with IPTC subject code(Hierarchical classification). In my project I should use svm . I have done all of feature extraction ...
3
votes
2answers
777 views

Text categorization using Naive Bayes

I am doing the text categorization machine learning problem using Naive Bayes. I have each word as a feature. I have been able to imeplement it and i am getting good accuracies. Is it possible for ...
3
votes
2answers
45 views

Multi-Label Document Classification

I have a database in which I store data based upon the following three fields: id, text, {labels}. Note that each text has been assigned to more than one label \ tag \ class. I want to build a model ...
3
votes
1answer
91 views

How do you initialize a gensim corpus variable with a csr_matrix?

I have X as a csr_matrix that I obtained using scikit's tfidf vectorizer, and y which is an array My plan is to create features using LDA, however, I failed to find how to initialize a gensim's ...
3
votes
2answers
140 views

TFIDF: tf implementation

I am implementing a classification tool and was experimenting with various TF versions: two logarithmic (correction inside/outside of the logarithm call), normalized, augmented, and the log-average. ...
3
votes
3answers
593 views

Suppressing the output in libsvm (python)

I am using libsvm (svmutils) from python for a classification task. The classifier is exact. However, I am getting output like this: * optimization finished, #iter = 75 nu = 0.000021 obj = -0.024330, ...
3
votes
1answer
566 views

Part of Speech (POS) tag Feature Selection for Text Classification

I have the POS tag sentences obtain using Stanford POS tagger. Eg: The/DT island/NN was/VBD very/RB beautiful/JJ ./. I/PRP love/VBP it/PRP ./. (xml format also available) Can anyone explain how to ...
2
votes
1answer
486 views

Caluculating IDF(Inverse Document Frequency) for document categorization

I have doubt in calculating IDF (Inverse Document Frequency) in document categorization. I have more than one category with multiple documents for training. I am calculating IDF for each term in a ...
2
votes
1answer
690 views

How to use reuters-21578 dataset with svm.net for text classification?

I've just started an application for text classification and I've read lots of papers about this topic, but till now I don't know how to start, I feel like I've not got the whole image. I've got the ...
2
votes
3answers
373 views

understanding probability calculation for naive bayes

With the naive bayes text classification technique, you typically count words in training data and calculate p(label | document) where the document is a string of words? for text classification, why ...
2
votes
2answers
518 views

How to implement TF_IDF feature weighting with Naive Bayes

I'm trying to implement the naive Bayes classifier for sentiment analysis. I plan to use the TF-IDF weighting measure. I'm just a little stuck now. NB generally uses the word(feature) frequency to ...
2
votes
1answer
643 views

LibSVM and non-numerical data

I'm interested in doing text categorization using LibSVM. How do you recommend I convert the terms/words to numerical data, so LibSVM can understand it? Thank you!
2
votes
1answer
62 views

Naive Bayes Text Classifier - determining when a document should be labelled 'unclassified'

I have designed and implemented a Naive Bayes Text Classifier (in Java). I am primarily using it to classify tweets into 20 classes. To determine the probability that a document belongs to a class I ...
2
votes
1answer
142 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
3answers
570 views

Looking for open source text-classfication implementation

There are some algorithms out there used for text classification, such as Bayes, kNN, SVM, etc. And I am looking for some implementations, any suggestions?
2
votes
2answers
600 views

Simple Mahout classification example

I want to train mahout for classification. For me this text is coming from database and I really do not want to store them to file for mahout training. I checked out the the MIA source code and ...
2
votes
2answers
374 views

how to build an arff file for weka?

I'm new in weka, I've to extract statuses from a social network and to analyse them using weka, how to build an arff file which contains those statuses? does weka contains the algorithms for stemming, ...
2
votes
2answers
342 views

Mathematical method for multiple document clustering by Cosine Similarity

Cosine Similarity: is often used when comparing two documents against each other. It measures the angle between the two vectors. If the value is zero the angle between the two vectors is 90 degrees ...
2
votes
1answer
147 views

classify cell array in matlab

I want to do text categorization on a dataset of news. I have a lot of features like subject, keyword, summary, etc... all of these features are stored in one cell array of structs, each struct ...
2
votes
2answers
259 views

News Article Data Sets

I am doing a project in news classification. Basically the system will classifying news articles based on the pre-defined topic (e.g. sports, politic, international). To build the system, I need free ...
1
vote
1answer
276 views

Document Features Vector Representation

I am building a document classifier to categorize documents. So first step is to represent each documents as "features vector" for the training purpose. After some research, I found that I can use ...
1
vote
3answers
65 views

Arranging documents in a grid in accordance with the content similarity

How is it possible to arrange documents in to a space (say multiple grids), so that the position in which they are placed in, contains information about how similar they are to other documents. I ...
1
vote
4answers
409 views

text categorization classifiers

Does anybody know of good open-source text-categorization models? I know about Stanford Classifier, Weka, Mallet, etc. but all of them require training. I need to classify news articles into ...
1
vote
3answers
1k views

Decision Trees For Document Classification

Hi I wanted to know that is it possible to use decision trees for document classification and if yes then how should be the data representation be? I know the use of R package party for Decision ...
1
vote
1answer
117 views

SKLearn Cross-validation:

I'm doing text classification and will be dealing with words that are not captured in my training data, meaning the word should be treated as unknown. Does anyone know if scikit's cross validation ...
1
vote
2answers
191 views

Classifying website type from webpages

Are there any reliable/deployed approaches, algorithms or tools to tagging the website type by parsing some its webpages. For ex: forums, blogs, PressRelease sites, news, E-Comm etc. I am looking ...
1
vote
4answers
802 views

Dictionary words for download

Can someone offer a suggestion on where to find a dictionary word list with frequency information? Ideally, the source would be English words of the North American variety.
1
vote
1answer
54 views

feature vector: calculation of weights for training vs test set

I am working with text classification using support vector machine, but basically I am confused with computation of feature vector for test set. For training feature vector, I took TF-IDF vector for ...
1
vote
3answers
95 views

what should i do when training set contains some error data in supervised classification?

I am working on a project which perform text auto classification, I have a lot of data set like as below: Text | CategoryName xxxxx... | AA yyyyy... | BB zzzzz... | AA then, i will use above ...
1
vote
1answer
261 views

Get WordNet's domain name for the specified word

I know WordNet has Domains Hierarchy: e.g. sport->football. 1) Is it possible to list all words related, for example, to the 'sport->football' sub-domain? Response: goalkeeper, forward, penalty, ...
1
vote
2answers
435 views

Supervised Latent Dirichlet Allocation for Document Classification?

I have a bunch of already human-classified documents in some groups. Is there a modified version of lda which I can use to train a model and then later classify unknown documents with it?
1
vote
1answer
260 views

Strange results for NaiveBayes under Weka's GUI

I'm using Weka's GUI to classify text documents. My data set is in the .arff format. I apply the StringToWordVector filter. Then, I apply the RemovePercentage filter to divide my data set into ...
1
vote
1answer
30 views

Best library for automatic document classification [closed]

The problem: we have a bunch of documents (magazine articles) that need to be put into "categories". Some categories reflect the subject of the article (what the article is about) and some other ...
1
vote
1answer
29 views

Finding how relevant a text is, given a whitelist and blacklist of words/phrases

This is a case of me wanting to search for something online but not knowing what it's called. I have a collection of job descriptions in text files, some only a sentence or two long, most a paragraph ...
1
vote
1answer
105 views

Re-normalize feature vectors after feature selection

I've performed χ² feature selection on my training documents already transformed to TF*IDF feature vectors using sklearn.feature_extraction.text.TfidfVectorizer, which produces normalized vectors by ...
1
vote
0answers
115 views

Feature Selection Implementation C# [closed]

Are there any library for implementing feature selection methods in c# ? I tried my best search but I didn't find something useful .. I'm focusing on specific feature selection methods which are : ...
1
vote
0answers
516 views

Probabilities computation for Naïve Bayes classifier under Weka

I want to understand how the Naive Bayes classifier works with text classification, in particular, how is the calculation of probabilities? Class Attribute ...
1
vote
2answers
551 views

document classification using naive bayes in python

I'm doing a project on document classification using naive bayes classifier in python. I have used the nltk python module for the same. The docs are from reuters dataset. I performed preprocessing ...
1
vote
0answers
301 views

Feature Selection in Text Classification

I'm currently studying on text classification, focusing on feature selection. Can anyone suggest me any software/program that I can use for text classification that provides feature selection function ...
1
vote
0answers
243 views

what are the possible OCR classification algorithm for business cards?

i want to classify data extracted from a business card using tesseract OCR engine, what are the possible classification algorithms and the main steps for doing that?
1
vote
1answer
293 views

Using Lingpipe for word-level language model

I have been trying to get a word-level language model to work on lingpipe. All the examples and tutorials I have come across show the character-n-gram model. How to I go about using lingpipe to train ...

1 2