3
votes
2answers
71 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 ...
0
votes
1answer
83 views

Naive bayes text classification fails in one category. Why? [closed]

I am implementing Naive Bayes classifier for text category detection. I have 37 categories and I've got accuracy about 36% on my test set. I want to improve accuracy, so I decided to implement 37 ...
1
vote
1answer
31 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 ...
0
votes
1answer
45 views

Scikit-learn: BernoulliNB, v0.10 vs v0.13: very different results

This is something of a follow-up to this thread, where I was getting erroneous results with the GaussianNB classifier, which turned out to be because I had scikit-learn v0.10 on the linux VM I was ...
0
votes
1answer
81 views

KNN classifier sentiment analysis vs category analysis precision

I have implemented the KNN classifier in java and I got a strange result. If I do a sentiment analysis on a dataset example amazon books review I got 55% precision. From 100 test document 55 correctly ...
1
vote
3answers
70 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 ...
0
votes
0answers
73 views

improve document classification method

I have a program to predict whether a news article is about a certain topic. There is two main scripts: 1) bow_train.py - generates a wordlist and a model and stores them in two files (arab.model ...
1
vote
4answers
514 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 ...
0
votes
0answers
67 views

How to report precision and recall scores using Mallet command line prompt?

I'm using MaxEnt classifier from Mallet for text classification. Mallet provides the ability to report the accuracy and F1 scores using the command line prompt. Is there a way to report precision ...
0
votes
1answer
162 views

Feature selection metrics other than Chi-2 in sklearn.feature_selection

I'm experimenting with sklearn.svm.SVC on some text classification tasks. I understand that performing feature selection prior to modelling with SVM is a somewhat questionable endeavour as the ...
1
vote
3answers
105 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
150 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 ...
2
votes
2answers
370 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 ...
0
votes
1answer
85 views

Using supervised term weighting methods with KNN algorithm

Is it possible to use the supervised term weighting models with KNN classifier ?. I wonder how to represent the vector of test documents as long as the test documents are unlabeled and the supervised ...
1
vote
2answers
502 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?
0
votes
3answers
166 views

how to perfom classfication

I'm trying to perform document classification into two categories (category1 and category2), using Weka. I've gathered a training set consisting of 600 documents belonging to both categories and the ...
0
votes
2answers
109 views

precision or recall speaks loud?

Say I'm evaluating some text classification research project using two approaches 'A' and 'B'. When using approach 'A', I get a x% increase in precision while with 'B', a x% increase in recall. How ...
0
votes
0answers
139 views

questions about using a standalone dataset to validate text classification with weka

I am trying to use weka for classfying spam message and nonspam message. With 100's of thousands of labeled spam messages, and another 100's of thousands labeled non-spam messages as a training data ...
1
vote
1answer
301 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 ...
4
votes
3answers
411 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 ...
2
votes
1answer
513 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 ...
0
votes
2answers
230 views

Centroid algorithm for document classification, threshold detection

I have a collection of documents related to a particular domain and have trained the centroid classifier based on that collection. What I want to do is, I will be feeding the classifier with documents ...
2
votes
1answer
161 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 ...
0
votes
1answer
224 views

Centroid algorithm for text classification, tools?

As discussed here, Do you know of any tools which provides a centroid algorithm for text classification in java?
0
votes
0answers
201 views

What are some NLP libraries that include feature selection and preprocessing techniques for document classification?

I've looked through some older SO posts about Text Classification libraries, all of them focus on breaking up text into POS (Parts of Speech) and Classification, not on pre-processing or feature ...
0
votes
1answer
84 views

Number of instances or the content of the instances more important (machine learning)?

Say in the document classification domain, if I'm having a dataset of 1000 instances but the instances (documents) are rather of small content; and I'm having another dataset of say 200 instances but ...
0
votes
1answer
155 views

Machine learning what approach to use when the dataset contain only one-class instances?

I have a dataset of a particular domain (say sports - 1 class). What I want to do is when I fed a web page to the classifier/clusterer I want to get a result whether that instance (web page) is ...
0
votes
1answer
236 views

Test cases in Weka

Given that I may have an ARFF file that is written in the following form: @relation spamOrNot @attribute body String @attribute result {spam, notspam} "free money now!", spam "hi meet me at 10", ...
-1
votes
1answer
112 views

how to represent email data as input for classification based on discussion topic using weka?

Duplicate: How to represent text for classification in weka? What will be the input to the classifier if my data is Email, i.e, textual data? What will be the attributes/feature set in Email that ...
3
votes
2answers
807 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 ...
0
votes
1answer
103 views

Need training data for categories like Sports, Entertainment, Health etc and all the sub categories

I am experimenting with Classification algorithms in ML and am looking for some corpus to train my model to distinguish among the different categories like sports,weather, technology, football,cricket ...
3
votes
3answers
641 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, ...
2
votes
1answer
706 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 ...
0
votes
2answers
695 views

Classify documents with tags

I have a huge amount of documents (mainly pdfs and doc's) I want to classify, so I can search over them according to certain tags. These tags could either be of my own (I put the tags to the document) ...
4
votes
1answer
588 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 ...
1
vote
2answers
195 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 ...
2
votes
1answer
650 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!
4
votes
3answers
397 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 ...
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 ...