0
votes
1answer
46 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 ...
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 ...
0
votes
1answer
31 views

Probabilistic Classifier in Opencv

I am looking for a probabilistic classifier in OpenCV, which during prediction, returns the probabilities or membership values of the various classes. I have looked into SVMs, ANNs and Normal Bayes ...
0
votes
1answer
32 views

sklearn GaussianNB - bad results, [nan] probabilities

I'm doing some work on gender classification for a class. I've been using SVMLight with decent results, but I wanted to try some bayesian methods on my data as well. My dataset consists of text ...
0
votes
2answers
103 views

Java, Weka: How to predict numeric attribute? [duplicate]

I was trying to use NaiveBayesUpdateable classifier from Weka. My data contains both nominal and numeric attributes: @relation cars @attribute country {FR, UK, ...} @attribute city {London, ...
0
votes
0answers
58 views

Bayesian Network

I am new to machine learning. I have a BN with 4 variables [X1,X2,X3,X4] and I am interested in predicting Y based on those. For the training data I have [X1,X2,X3,X4,Y]. But for actual data I have ...
1
vote
2answers
47 views

Updating OpenCV CvNormalBayesClassifier

I'm trying to use CvNormalBayesClassifier to train my program to learn skin pixel colors. I have a set of training images and response images. The response images are in black and white, skin regions ...
1
vote
0answers
30 views

Bayesian Sets and Finding the Top Sets

Bayesian Sets proposed by Ghahramani and Heller (http://mlg.eng.cam.ac.uk/zoubin/papers/bsets-nips05.pdf) provides a useful way to find sets of items based upon a query (eg dog would return cat, pet) ...
0
votes
1answer
113 views

what should be the parametric form of the l2 regularization in a Bayesian setting? [closed]

In a Bayesian setting for parameter estimation, what should be the parametric form of the prior distribution in order to perform l2 regularization?
0
votes
1answer
226 views

How good can Nearest Neighbor, Naive Bayes and a Decision Tree classifier solve the given classificationproblem?

The 3 diagramms (i), (ii), (iii) show training sets having 2 numerical attributes (x and y axis) and a target attribute with two classes (circle and square). I am now wondering how good the data ...
1
vote
0answers
70 views

How to update Bayes NormalClassifier from OpenCV?

i am trying to use CvNormalBayesClassifier from OpenCV. But i'm unable to update a model I already trained. Here is my code to train the model initially: Mat training_data = Mat(counter_instances, ...
0
votes
0answers
80 views

Combining Naive Bayes and SVM for spam filtering

I am working on a hybrid algorithm that can be obtained by combining Naive bayes and SVM for spam filtering. Please help with different ways of combining the algorithms. Also what are the different ...
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 ...
1
vote
1answer
163 views

Naive Bayes text classifier with features such as hasDate, hasLocation, first word etc

I'm trying to work on a Naive Bayes text classifier. I have already created a bag of words approach in code. In my documents I have noticed many features that are unique to certain classifications. ...
0
votes
1answer
56 views

Naive Bayes Computation in Perl / Moose

Here is some code I wrote to calculate the probability of labels with respect to some observed features using a Naive Bayes classifier. This is intended to compute the Naive Bayes formula without ...
0
votes
1answer
121 views

Naive Bayes, not so Naive?

I have a Naive Bayes classifier (implemented with WEKA) that looks for uppercase letters. contains_A contains_B ... contains_Z For a certain class the word LCD appears in almost every instance of ...
0
votes
1answer
126 views

How to implement information retrieval techniques in Naive Bayesian Spam Filter?

I have implemented a Naive Bayesian Spam Filter which learns on a given data set and then predicts any new input as spam or ham.But now I want to incorporate the information retrieval techniques in it ...
4
votes
2answers
480 views

Handling missing attributes in Naive Bayes classifier

I am writing a Naive Bayes classifier for performing indoor room localization from WiFi signal strength. So far it is working well, but I have some questions about missing features. This occurs ...
0
votes
0answers
175 views

Weka: Classifier Theoretical Accuracy Vastly Differs from Test Accuracy

I'm currently training a classifier in Weka to predict a nominal class with 3 potential values from 4 numeric features. I've used a variety of different classification algorithms: DTNB, LogitBoost, ...
0
votes
1answer
314 views

compare bayesian linear regression VS linear regression [closed]

Recently I learnt the bayesian linear regression model, but what I'm confused is that in which situation we should use the linear regression, and when to use the bayesian version. How about the ...
2
votes
0answers
189 views

Looking for open source Probabilistic Neural Network implementation in Visual C#

Has anybody seen an open source neural network library that implements Donald Specht's Probabilistic Neural Network (PNN) architecture? I've looked at several of the most popular open source neural ...
1
vote
1answer
263 views

Using Accord.Net's Codification Object to Codify second data set

I am trying to figure out how to use the Accord.Net Framework to make a bayesian prediction using the machine learning NaiveBayes class. I have followed the example code listed in the documentation ...
4
votes
1answer
390 views

Semi-supervised Naive Bayes with NLTK [closed]

I have built a semi-supervised version of NLTK's Naive Bayes in Python based on the EM (expectation-maximization algorithm). However, in some iterations of EM I am getting negative log-likelihoods ...
0
votes
1answer
231 views

MatLab: Naive-Bayes with Univariate Gaussian

I am trying to implement Naive Bayes Classifier using data set publish by UCI machine learning team, I am new to Machine Learning and trying to understand techniques to use for my work related ...
0
votes
0answers
696 views

Bayes classification for image processing in Matlab [closed]

I'm really new to matlab and now trying to implement Bayesian classification method to extract certain feature from a set of testing images, as a first practice of using matlab image processing ...
2
votes
4answers
301 views

Anyone can tell me why we always use the gaussian distribution in Machine learning?

For example, we always assumed that the data or signal error is a Gaussian distribution? why?
0
votes
3answers
222 views

Good performance only for one class naive bayes

I use Naive Bayes from Weka to do text classification. I have two classes for my sentences, "Positive" and "Negative". I collected about 207 sentences with positive meaning and 189 sentences with ...
6
votes
1answer
719 views

bayesian network vs bayes classifier

What is the difference between a Bayesian network and a Naive Bayes classifier? I noticed one is just implemented in matlab as classify the other has an entire net toolbox. If you could explain in ...
1
vote
1answer
165 views

Figure 2.5 in Elements of Statistical Learning

I met some difficulty in calculating the Bayes decision boundary of Figure 2.5. In the package ElemStatLearn, it already calcualted the probability at each point and used contour to draw the boundary. ...
0
votes
1answer
291 views

Naive Bayesian and zero-frequency issue

I think I've implemented most of it correctly. One part confused me: The zero-frequency problem: Add 1 to the count for every attribute value-class combination (Laplace estimator) when an attribute ...
1
vote
1answer
314 views

Naive Bayes and Neural Network similarities and choice

I have a large dataset available with 10 different inputs and 1 output. All the outputs and the input are discreet (LOW, MEDIUM, HIGH). I was thinking about creating a neural network for this problem, ...
0
votes
0answers
117 views

How to convert Graphml data into input vector format/key,value pairs - Mahout's Naive Bayesian?

I have known graphs (in graphml format) for all the known categories whose nodes & edges have values associated with it. Both nodes and edges also have their own attributes associated with them. I ...
3
votes
1answer
365 views

naive classifier matlab

When testing the naive classifier in matlab I get different results even though I trained and tested on the same sample data, I was wondering if my code is correct and if someone could help explain ...
3
votes
1answer
1k views

Bayes classification in matlab

I have 50 images and created a database of the green channel of each image by separating them into two classes (Skin and wound) and storing the their respective green channel value. Also, I have 1600 ...
0
votes
1answer
109 views

similarity metric used by the Naive Bayes classifier under Weka

I want to know The similarity metric used by the Naive Bayes classifier under Weka. any help?
0
votes
0answers
256 views

How does Complement Naive Bayes work with two classes?

Actually I don't get how using complement weights changes anything in binary text classification (i.e. having two classes). Basically, for the Multinomial case I multiply P(c) with P(d|c) (usually ...
1
vote
2answers
787 views

weka AdaBoost does not improve results

(sorry for any English mistakes, I'm no native speaker) in my bachelor thesis I am supposed to use AdaBoostM1 with a MultinomialNaiveBayes classifier on a text classification problem. The problem is ...
2
votes
2answers
367 views

Binary Classification with Rule Based approach rather than proper algorithms

Problem Statement is somewhat like this: Given a website, we have to classify it into one of the two predefined classes (say whether its an e-commerce website or not?) We have already tried ...
0
votes
1answer
376 views

Mahout Naive Bayes Classifier for Items

Team, I am working on a project where i need to classify Items into certain category. I have a single file as input; which contains target variable and space separated features. My training data will ...
6
votes
2answers
4k 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 ...
23
votes
2answers
10k views

A simple explanation of Naive Bayes Classification

I am finding it hard to understand the process of Naive Bayes, and I was wondering if someone could explained it with a simple step by step process in English. I understand it takes comparisons by ...
7
votes
2answers
2k views

Save Naive Bayes Trained Classifier in NLTK

I'm slightly confused in regard to how I save a trained classifier. As in, re-training a classifier each time I want to use it is obviously really bad and slow, how do I save it and the load it again ...
3
votes
1answer
647 views

Implement Gaussian Naive Bayes

I'm trying to implement Gaussian Naive Bayes in C# for classification of points. I have implemented first part ( http://www.statsoft.com/textbook/naive-bayes-classifier/ ) probability part, but i ...
2
votes
3answers
1k views

Naive Bayes classifier using python

I'm using scikit-learn for finding the Tf-idf weight of a document and then using the Naive Bayesian classifier to classify the text. But the Tf-idf weight of all words in a documents are negative ...
4
votes
1answer
406 views

Ensemble learning, multiple classifier system

I am trying to use a MCS (Multi classifier system) to do some better work on limited data i.e become more accurate. I am using K-means clustering at the moment but may choose to go with FCM (Fuzzy ...
2
votes
1answer
718 views

How is the “prediction” column in the Weka Naive Bayes output calculated?

I did a Naive Bayes classification using 10 fold cross-validation, obtaining a table prediction on the test data that looks like this: === Predictions on test data === inst# actual predicted ...
0
votes
0answers
173 views

How can I incorporate hidden markov chains/Viterbi algo into a directed graph?

I'm struggling with the logic of this so any tips/suggestions would be great. Basically I have new data sets everyday, these sets are added as nodes into a graph. The next day when I add a new ...
1
vote
1answer
676 views

Matlab Naive Bayes

Hello Im using the KDD 1999 dataset and I was looking to apply naive bayes in matlab to it. What I want to know is the kdd dataset is a 494021x42 array of data, if you notice "training" and ...
1
vote
1answer
493 views

Weighted Naive Bayes Classifier in Apache Mahout

I am using Naive Bayes classifier for my sentiment analysis on customer support. But unfortunately I don't have huge annotated data sets in the customer support domain. But I have a little amount of ...
3
votes
2answers
773 views

Text categorization using Naive Bayes

I am doing the text categorization machine learning problem using Naive Bayes. I have each word as a feature. I have been able to imeplement it and i am getting good accuracies. Is it possible for ...

1 2