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.
0
votes
2answers
28 views
How can i classify text documents with using SVM and KNN
Almost all of the examples are based on numbers. In text documents i have words instead of numbers.
So can you show me simple examples of how to use these algorithms for text documents ...
3
votes
2answers
39 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 ...
2
votes
2answers
258 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
27 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 ...
0
votes
1answer
53 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
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 ...
2
votes
1answer
61 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 ...
0
votes
1answer
38 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 ...
2
votes
2answers
578 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 ...
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. ...
0
votes
1answer
81 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 ...
0
votes
1answer
70 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
1answer
51 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
1answer
275 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 ...
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 ...
0
votes
3answers
4k views
Basic text classification with Weka in Java
Im trying to build a text classifier in JAVA with Weka.
I have read some tutorials, and I´m trying to build my own classifier.
I have the following categories:
computer,sport,unknown
and the ...
0
votes
0answers
71 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
votes
2answers
49 views
Cluster text documents in database
I do have 20.000 text files loaded in PostgreSQL database, one file in one row, all stored in table named docs with columns doc_id and doc_content.
I know that there is approximately 8 types of ...
1
vote
4answers
401 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
1answer
78 views
Different results between the Bernoulli Naive Bayes in NLTK and in scikit-learn
I am getting quite different results when classifying text (in only two categories) with the Bernoulli Naive Bayes algorithm in NLTK and the one in scikit-learn module. Although the overall accuracy ...
1
vote
1answer
583 views
Document classification using LSA/SVD
I am trying to do document classification using Support Vector Machines (SVM). The documents I have are collection of emails. I have around 3000 documents to train the SVM classifier and have a test ...
3
votes
1answer
90 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 ...
0
votes
1answer
232 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
vote
1answer
101 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 ...
0
votes
1answer
56 views
Is it possible to use SVM to learn a training sample with an input of “Feature Matrix” rather than a “Feature Vector”?
Is it possible to use SVM to learn a training sample with an input of "Feature Matrix" rather than a "Feature Vector" ? I need to classify XML documents by representing each document as a Feature ...
2
votes
2answers
372 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, ...
0
votes
1answer
137 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 ...
0
votes
0answers
59 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 ...
1
vote
3answers
90 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
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 ...
2
votes
2answers
340 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 ...
8
votes
9answers
851 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 ...
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
258 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
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
2answers
431 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
0answers
191 views
how does weka's simple logistic avoid overfitting?
I've read that Support Vector Machines avoid overfitting by choosing an appropriate hyperplane each time. I've also read that logistic regression avoids overfitting by using ridge, which can help with ...
0
votes
0answers
213 views
Weka java api classification issue
I am trying to build a text classifier based on weka SMO algo.
I have created the following code based on diferent resources http://pastebin.com/vSek2gZ9
But it is not giving the actual result.
I am ...
0
votes
3answers
163 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
1answer
276 views
the difference between TF-IDF and TF in SVM linear kernel
Because the IDF is a constant number.
All value in one dimension multiply a constant number.
In SVM Linear kernel, The result will be different ?
0
votes
2answers
102 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
135 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 ...
2
votes
1answer
484 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 ...
4
votes
3answers
382 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 ...
0
votes
0answers
53 views
Strange Predictions in generated by AdaBoost.HM
I'm programming a Sentiment Analysis Algorithm that uses an classification algorithm called AdaBoost.HM. My project's mentor said that I can one of the following AdaBoost: ...
0
votes
2answers
220 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 ...
1
vote
2answers
549 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 ...
0
votes
1answer
414 views
Expectation maximization algorithm implementation with NaiveBayes
I've implemented the Naive-Bayes Document classification with good text filtration and i have accepted statistical results with a good accuracy , i need to enhance my results using an EM algorithm .
...
0
votes
3answers
366 views
Triple drop down menu with the Dewey Decimal Classification
The Dewey Decimal Classification (DDC) is a really useful method to classify books and texts. So I'm trying to find a triple drop down menu that implements it. I googled it in many different ways but ...


