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 ...
0
votes
0answers
20 views

code for authentication of individuals based on eeg

Unique data is obtained from an individual(through EEG) in the form of an excel sheet, 10*10. In order to authenticate a person(trying to gain access), the person's data is taken in the same format. ...
1
vote
0answers
63 views

Orange information score maximum value, in the context of bayesian and tree classifiers

I am working with the Orange package and have written the following code based on the tutorials available: import orange,orngTest,orngStat,orngTree,Orange bayes = orange.BayesLearner() ...
2
votes
1answer
265 views

Scikit-learn: is semi-supervised Naive Bayes implementation available?

I would like to use the implementation of Semi-supervised Naive Bayes (Bernoulli) of Scikit-learn. According to this link in github, there was some work and discussion about it one year ago (class ...
1
vote
1answer
166 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
123 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
214 views

How does Laplace Smoothing Effect Prior / Evidence

I have a probability / stats question related to implementing Naive Bayes Classifiers, in particular about implementing Laplace Smoothing to avoid the Zero count issue and overfitting. From what Ive ...
4
votes
2answers
496 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
1answer
514 views

The within-class variance in each feature of TRAINING must be positive

When trying to fit Naive Bayes: training_data = sample; % target_class = K8; # train model nb = NaiveBayes.fit(training_data, target_class); # prediction y = nb.predict(cluster3); I ...
0
votes
0answers
310 views

Bayesian Classifier

When using the Bayesian classifier in matlab what’s the best way to avoid over fitting and inaccuracies? I am using 1000 samples at the moment for the training data of which 750 are "normal" and 250 ...
0
votes
0answers
183 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, ...
3
votes
2answers
507 views

Train skin pixels using Opencv CvNormalBayesClassifier

I'm very new to OpenCV. I am trying to use the CvNormalBayesClassifier to train my program to learn skin pixel colours. Currently I have got around 20 human pictures (face/other body parts) under ...
0
votes
0answers
698 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 ...
4
votes
1answer
122 views

Bayesian classification for semi-structured data in Java

I would like to train and use a bayesian classifier for the following situation: Semi-structured data - basically an XML schema Information is contained in multiple plain text fields Some fields / ...
0
votes
2answers
144 views

Accurancy of Naive Bayesian classifier?

Is there any percent for accurancy of Naive Bayesian classifier that can we use to check how accurate is our classifier?
0
votes
1answer
114 views

Does a Naive Bayesian classifier count distinct occurrences of a word?

I like to use a Naive Bayes Classifier for classifying text. If I have a word which occurs many times in one text, such as beautiful, do I count all times or only distinct occurrences?
6
votes
1answer
966 views

Clustering and Bayes classifiers Matlab

So I am at a cross roads on what to do next, I set out to learn and apply some machine learning algorithms on a complicated dataset and I have now done this. My plan from the very beginning was to ...
3
votes
1answer
369 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 ...
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 ...
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
2answers
93 views

Finding the number of times each word in a hashset occurs in text document

I'm implementing a Naive Bayes text classification algorithm in Java. What I have done so far is, declare a hashset called Vocabulary which stores all the unique words from a given text file (test ...
0
votes
0answers
259 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 ...
5
votes
1answer
320 views

What is naive about Naive bayes?

What is naive about Naive Bayes? Have an exam later, and this was a question on the sample paper we received. We haven't found a good clear answer yet, could anyone explain this?
2
votes
2answers
368 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
0answers
194 views

PDF to txt conversion using OCR or text selection [closed]

I'd like to convert a PDF file into plain text in the same way as if a user would be copy pasting it piece by piece. The PDF file contains 2 columns of tables of fixed width having blue headers. I ...
0
votes
1answer
377 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 ...
0
votes
2answers
664 views

How to clasify an unlabelled dataset with a newly trained NaiveBayes classifier in Weka

I have an unlabeled dataset that I want to classify with my newly trained classifier using NaiveBayes classification in Weka. So actually when in the Classify mode in weka if i give the option ...
24
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 ...
4
votes
1answer
671 views

Using a Naive Bayes Classifier to classify tweets: some problems

Using, amongst other sources, various posts here on Stackoverflow, I'm trying to implement my own PHP classier to classify tweets into a positive, neutral and negative class. Before coding, I need to ...
0
votes
2answers
177 views

Which should be the list of ignored words for the Naive Bayesian Classifier?

I am working with Naive Bayesian classifier over PHP (http://www.xhtml.net/php/PHPNaiveBayesianFilter) And there's a list of words which can be ignored while training the system. Those words are not ...
1
vote
1answer
645 views

Nltk naive bayesian classifier memory issue

my first post here! I have problems using the nltk NaiveBayesClassifier. I have a training set of 7000 items. Each training item has a description of 2 or 3 worlds and a code. I would like to use the ...
2
votes
1answer
1k views

MATLAB - Classification output

My programme uses K-means clustering of a set amount of clusters from the user. For this k=4 but I would like to run the clustered information through matlabs naive bayes classifier afterwards. Is ...
2
votes
3answers
5k views

Open Source Naïve Bayes Classifier written in Java

I'm looking for an Open Source Naïve Bayes Classifier library written in Java. Would appreciate any help in finding one. Is Naïve Bayes Classifier the same as Bayesian Network?
-1
votes
1answer
42 views

Determinig the error in a bayesian classifier

i am supposed to create a classifier that classifies a given object based on the attributes provided and a training data. How can I calculate the error that can be possibly generated while ...
1
vote
3answers
532 views

Text Classification into Categories

I am working on a text classification problem, I am trying to classify a collection of words into category, yes there are plenty of libraries available for classification, so please dont answer if you ...
0
votes
1answer
673 views

online learning with Naive Bayes Classifier

I am trying to predict the inter-arrival time of the incoming network packets. I measure the inter-arrival times of network packets and represent this data in the form of binary features: xi= ...
0
votes
2answers
227 views

Implementation details of a Bayesian classifier

I've implemented a simple Bayesian classifier, but I'm running into some overflow problems when using it on non-trivial amounts of data. One strategy I tried in order to keep the numbers small, but ...
1
vote
1answer
467 views

Suitability of Naive Bayes classifier in Mahout to classifying websites

I'm currently working on a project that requires a database categorising websites (e.g. cnn.com = news). We only require broad classifications - we don't need every single URL classified individually. ...
1
vote
1answer
422 views

How to use Odds ratio feature selection with Naive bayes Classifier

I want to classify documents (composed of words) into 3 classes (Positive, Negative, Unknown/Neutral). A subset of the document words become the features. Until now, I have programmed a Naive Bayes ...
3
votes
1answer
531 views

Length normalization in a naive Bayes classifier for documents

I'm trying to implement a naive Bayes classifier to classify documents that are essentially sets (as opposed to bags) of features, i.e. each feature contains a set of unique features, each of which ...
0
votes
2answers
437 views

error with NaiveBayes classifier when classify one instance with pretrained model

I have a trained dataset with 125 records. I'm going to classify new instance using NaiveBayesUpdatable. but when I run naiveBayes (under windows, using weka 3.4), I get the following error : ...
1
vote
1answer
465 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 ...
1
vote
1answer
289 views

Naive Bayes Classifier Biased Output?

I'm using Emgu CV to implement a machine learning technique in c# to classify pixels of my image into 3 different categories. Everything works perfect so far, but the problem is that it is fully ...
1
vote
1answer
387 views

Ideal algorithmic approach — Rule-engine / Decision-Tree and some Learning logic?

My requirement is probably close to what one expects of an "Expert System". And looking for the simplest solution, that can give me real-time or near-real time inference, with some offline ...
1
vote
1answer
2k views

Running weka from command line - cannot find class NaiveBayes

I am trying to run a Weka classification from the commmand line, but my code: java weka.classifiers.bayes.NaiveBayes -t file1.arff -T file2.arff -p comes up with the error message: "Could not find ...
1
vote
1answer
2k views

classify with mvnpdf MATLAB

I am classifying data xtrain matrix with 2 features and 2000 rows as training, so the dimension is 2, μ is a 2 element vector and Σ is the covariancxe matrix 2x2: xtrain = 0.3630 1.6632 ...
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. ...
0
votes
2answers
553 views

parameter optimization for classifier algorithm

It is said that different algorithms have different parameters. I don't really see this as true, say if it is a tree decision algorithm and naive bayesian algorithm, what is the parameter for each? ...

1 2