Tagged Questions
1
vote
1answer
28 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 ...
6
votes
3answers
144 views
What is a relatively simple way to determine the probability that a sentence is in English?
I have a number of strings (collections of characters) that represent sentences in different languages, say:
Hello, my name is George.
Das brot ist gut.
... etc.
I want ...
0
votes
0answers
46 views
Bayesian classifying given a key term
How can I classify a document into a relevance rating given a search term?
What I know is that with Bayesian Classifier (or other classifiers), one can train a dataset to elicit a binary (or ...
0
votes
1answer
155 views
Implementing Bayes classifier (in PHP)
I have a theoretical question about a Naive Bayes Classifier. Assume I have trained the classifier with the following training data:
class word count
-----------------
pos good 1
sun 1
...
6
votes
2answers
5k views
Implementing Bag-of-Words Naive-Bayes classifier in NLTK
I basically have the same question as this guy.. The example in the NLTK book for the Naive Bayes classifier considers only whether a word occurs in a document as a feature.. it doesn't consider the ...
0
votes
0answers
261 views
How to compare 2 sentences with different sizes of words using Lesk or any Similar approach
I wanted to create a small script to find semantic similarity between 2 Sentences and wrote an algorithm based on LESK for disambiguation and did most of it but when I tried to compare the words in ...
1
vote
1answer
466 views
Large scale naïve Bayes classifier with top-k output
I need a library for naïve Bayes large scale, with millions of training examples and +100k binary features. It must be an online version (updatable after training). I also need top-k output, that is ...
3
votes
2answers
415 views
Document Analysis and Tagging
Let's say I have a bunch of essays (thousands) that I want to tag, categorize, etc. Ideally, I'd like to train something by manually categorizing/tagging a few hundred, and then let the thing loose.
...
13
votes
3answers
4k views
Classifying Documents into Categories
I've got about 300k documents stored in a Postgres database that are tagged with topic categories (there are about 150 categories in total). I have another 150k documents that don't yet have ...
9
votes
1answer
3k views
Naive Bayesian for Topic detection using “Bag of Words” approach
I am trying to implement a naive bayseian approach to find the topic of a given document or stream of words. Is there are Naive Bayesian approach that i might be able to look up for this ?
Also, i ...
5
votes
3answers
3k views
Simple Sentiment Analysis
It appears that the simplest, naivest way to do basic sentiment analysis is with a Bayesian classifier (confirmed by what I'm finding here on SO). Any counter-arguments or other suggestions?
6
votes
4answers
2k views
Naive bayes calculation in sql
I want to use naive bayes to classify documents into a relatively large number of classes. I'm looking to confirm whether an mention of an entity name in an article really is that entity, on the basis ...
7
votes
2answers
1k views
Measuring the performance of classification algorithm
I've got a classification problem in my hand, which I'd like to address with a machine learning algorithm ( Bayes, or Markovian probably, the question is independent on the classifier to be used). ...