Can anybody knows ,ist here any difference between naviey bayes classifier and bayesian neural network classifier??

1 view (last 30 days)
Can anybody knows ,is there any difference between naviey bayes classifier and bayesian neural network classifier??

Accepted Answer

Greg Heath
Greg Heath on 26 Jan 2015
help NaïveBayes
doc NaiveBayes
help fitNaïveBayes
doc fitNaiveBayes
Assumes probability distributions for each class and assigns inputs to the class with the highest estimated posterior probability. Naïve implies the assumption of noncorrelated input variables so that the total distribution is proportional to the product of the individual variable distributions
**********************************************************************************************
help trainbr
doc trainbr
Creates a nonlinear function similar to output = b1 + LW*tanh(IW*input+b2) where b1,b2,IW and LW are weights chosen to minimize
mse(target-output)+ alpha*mse(weights)
Hope this helps.
Thank you for formally accepting my answer
Greg

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!