Tagged Questions
0
votes
1answer
52 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
58 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 ...
1
vote
1answer
49 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
4answers
391 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
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
370 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
135 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. ...
1
vote
3answers
89 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
116 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
429 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
189 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
212 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
2answers
101 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 ...
4
votes
3answers
381 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
2answers
217 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 ...
0
votes
1answer
273 views
3-fold cross-validation using Joaquim's SVM light
I need to do a 3-fold cross validation using Joaquim's SVM light. Cross Validation and SVM are new things to me and I don't know if I'm doing it right. What have I done so far? I converted my data in ...
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 ...
0
votes
1answer
82 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
0answers
581 views
Text classification using SVM works with unigrams but not higher order n-grams
I'm using LibSVM (in Java fwiw) to classify text samples into one of two categories: english or spanish language. I'm training on three texts in each language, for a total of roughly 50,000 words ...
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
1answer
666 views
Text classification with weka
I'm building a text classifier in java with Weka library.
First i remove stopwords, then I'm using a stemmer (e.g convert cars to car).
Right now i have 6 predefined categories. I train the ...
5
votes
2answers
267 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
447 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 ...
-1
votes
1answer
110 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
3answers
589 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, ...
1
vote
1answer
291 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 ...
0
votes
1answer
584 views
Does SVMlight output the classification scores?
I need to know if SVMlight outputs classification scores. I couldn't find it anywhere.I know that for example libSVM does.thx
4
votes
3answers
378 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 ...
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 ...