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 ...
6
votes
1answer
728 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
132 views

MatLab BayesNetToolbox parameter learning

My question is specific to the "learn_params()" function of the BayesNetToolbox in MatLab. In the user manual, "learn_params()" is stated to be suitable for use only if the input data is fully ...
3
votes
1answer
1k views

Import WEKA model to MATLAB

Does anyone know how to reuse a WEKA model in MATLAB? I've recently created a Bayes Net model in WEKA, and I want to import that model in MATLAB so I can re-create the Bayesian Network in MATLAB. ...
1
vote
2answers
623 views

Simple example/use-case for a BNT gaussian_CPD?

I am attempting to implement a Naive Bayes classifier using BNT and MATLAB. So far I have been sticking with simple tabular_CPD variables and "guesstimating" probabilities for the variables. My ...
8
votes
1answer
518 views

Free Energy Reinforcement Learning Implementation

I've been trying to implement the algorithm described here, and then test it on the "large action task" described in the same paper. Overview of the algorithm: In brief, the algorithm uses an RBM ...
-1
votes
1answer
574 views

Bayes Net Toolbox for MATLAB

I'm new to learning the Bayes Net Toolbox for MATLAB, and I have tried this: N = 4; dag = zeros( N, N ); C = 1; S = 2; R = 3; W = 4; dag( C, [R S] ) = 1; dag( R, W ) = 1; dag( S, W ) = 1; ...
0
votes
1answer
467 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.
0
votes
2answers
426 views

Bayes Net Toolbox for Matlab installation error MATLAB R2010b

I am getting an error when try to test Bayes Net Toolbox for Matlab, I am doing the same as the installation shown here but get errors (I have Matlab R2010b): >> cd ...
0
votes
1answer
748 views

Structure Learning Package for Bayes Net Toolbox MATLAB

I am reviewing this MATLAB code,and it have some examples, I am executing test_bnpc_asia.m, but get an error, How to correct it? (I have MATLAB R2010B) executing: >> test_bnpc_asia.m ...