Tagged Questions
1
vote
1answer
271 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
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
1answer
215 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?
5
votes
2answers
264 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
444 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 ...
5
votes
6answers
304 views
Bucketing sentences by mood
Let's start with a simple problem. Let's say that I have a 350 char sentence and would like to bucket the sentence into either a "Good mood" bucket or a "Bad mood" bucket.
What would be the best way ...
0
votes
2answers
657 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
2answers
534 views
Document clasification, using genetic algorithms
I have a bit of a problem with my project for the university.
I have to implement document classification using genetic algorithm.
I've had a look at this example and (lets say) understood the ...
4
votes
5answers
2k views
Text classification/categorization algorithm
My objective is to [semi]automatically assign texts to different categories. There's a set of user defined categories and a set of texts for each category. The ideal algorithm should be able to learn ...
8
votes
9answers
845 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 ...