Tagged Questions
1
vote
1answer
36 views
how to plot joint distribtuion of 2 random variable having 1000 data
here is the code i wrote to generate probability distribtuion of two random variable. now i would like to plot JPD.
clear all;
clc;
x1 = randn(1000,1);
x2 = 10*randn(1000,1);
[count_1, b] = ...
-2
votes
1answer
27 views
Bayes classification in matlab histogram?
I have 2 variable pat and target.Pat variable consist of 2 row and 500 columns.Target variable 1*500.
pat variable contains 500 patterns coded as 2D feature vectors x = [x1 x2]T . The second ...
0
votes
2answers
172 views
Simple examples/applications of Bayesian Networks
Thanks for reading.
I want to implement a Baysian Network using the Matlab's BNT toolbox.The thing is, I can't find "easy" examples, since it's the first time I have to deal with BN.
Can you propose ...
8
votes
5answers
1k views
Naive Bayes classifier and discriminant analysis accuracy is way off
So I have two methods of classification, Discriminant analysis diaglinear classification (naive bayes) and the pure Naive Bayes classifier implemented in matlab, there are 23 classes in the entire ...
0
votes
1answer
509 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
1answer
232 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
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 ...
6
votes
1answer
731 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 ...
6
votes
1answer
963 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 ...
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 ...
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
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 ...
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
0answers
369 views
Bayesian belief network/system with Fuzzy Clustering neural networks
Many researches have argued that Artificial Neural Networks (ANNs) can
improve the performance of intrusion detection systems (IDS) when
compared with traditional methods. However for ANN-based ...
2
votes
1answer
355 views
C# C++ dropping packets
Is there a way to drop packets like iptables in Unix using c# or c++?
Im looking to develop a Bayesian neural network utilising fuzzy logic for a Intrusion Prevention System and im not sure which way ...
0
votes
1answer
468 views
Bayesian network and fuzzy logic
Can anyone give me an example of a Bayesian network and fuzzy logic being used in intrusion detection?
I'm struggling to figure out how it can be used. And any code on it?
Thanks guys.
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
...
2
votes
2answers
882 views
Calculate posterior distribution of unknown mis-classification with PRTools in MATLAB
I'm using the PRTools MATLAB library to train some classifiers, generating test data and testing the classifiers.
I have the following details:
N: Total # of test examples
k: # of
...
0
votes
3answers
1k views
How do I solve this conditional probabilities problem with MATLAB?
If P( cj | xi ) are already known, where i=1,2,...n; j=1,2,...k;
How do I calculate/estimate:
P( cj | xl , xm , xn ), where j=1,2,...k; l,m,n {1,2,...n} ?