Tagged Questions
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 ...
0
votes
0answers
584 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 ...
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, ...
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!