A Bayesian network, Bayes network, belief network or directed acyclic graphical model is a probabilistic graphical model that represents a set of random variables and their conditional dependencies via a directed acyclic graph (DAG).

learn more… | top users | synonyms

2
votes
1answer
151 views

What is the appropriate Machine Learning Algorithm for this scenario?

I am working on a Machine Learning problem which looks like this: Input Variables Categorical a b c d Continuous e Output Variables Discrete(Integers) v x y ...
0
votes
1answer
100 views

Learning and using augmented Bayes classifiers in python

I'm trying to use a forest (or tree) augmented Bayes classifier in python, first learning it and then using it for classification. (I'd love to use incremental learning from incomplete data, but I ...
0
votes
1answer
9 views

Can I make an unchordal MRF equivalent to a chordal MRF?

Here BY equivalence I mean, will the distribution(Entire table) be made equal in both cases???
0
votes
1answer
79 views

OR-relation in Bayesian Networks

How do you represent an OR-relation in a Bayesian Network? For example, P(A | B OR C). I also wonder how you can calculate the probability for such an expression? Thank you in advance!
0
votes
1answer
325 views

cyclic bayesian network

i have several elements A,B,C,AB,ABC,.. (see image below) where each element either exists or not. the rule that governs this system is as follows: if AB exists, then A and B must also exist. ...
0
votes
1answer
426 views

Whats the best open source bayesian software for trouble shooting?

I have seen www.dezide.com as a top of the line trouble shooting software based on bayesian networking. But I need an open source solution to develop further as this is not for a commercial project. ...
-1
votes
1answer
233 views

Naive Bayes in Weka

Do anybody know the specific calculation for naive Bayes classifier in Weka? Does it use any kind of smoothing or log function to calculate the probability?
-1
votes
1answer
573 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; ...
1
vote
0answers
15 views

Bayes Rule Using SQL

Wanted to confirm the technique i am using to calculate the a-posterior probabilities of the following disease is correct for the following Bayes Network ...
1
vote
0answers
49 views

some thing about conditional independence in bayesian network

This question is about a concept in the paper "indentifying independence in bayesian network", page 2 and 3. In a bayesian network, each node represents as variable and the arrow represent the ...
0
votes
0answers
7 views

Bayesian Network Output

I'm using a dataset that predicts whether one has diabetes or not. If in my data set, the number of observations negative of diabetes is 10 times larger than those of positive, is it already given ...
0
votes
0answers
11 views

What's a Bayes Net Good for in code

I have been show a lot of diagrams, and seen a lot of equations, to explane what a bayes net is, and none of it has stuck for me. I'm told it's a "compact representation of Joint Probability ...
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 ...
0
votes
0answers
62 views

Compute CPT in Bayesian network

i want to compute conditional probability tables for the nodes in my bayesian network. if i have a node which has one parent: A / J and i want to compute P(J|A) this is done ...
0
votes
0answers
22 views

SamIam coding inference

how to paste multiple instantiation in a directory by code in SAMIAM one by one. i want to do this for analysis. can anyone help? some java code like this /* Create a domain of size 5. */ 04 ...
0
votes
0answers
36 views

Bayesian Networks with multiple layers

So I'm trying to solve a problem with Bayesian networking. I know the conditional probabilities of some event, say that it will rain. Suppose that I measure (boolean) values from each of four ...
0
votes
0answers
134 views

Naive Bayesian Inference in Java?

I have a Bayesian Network implemented (by hand, no libraries) in Java. I need to update the belief at a specific node. I can't for the life of me find sources online about doing this - just a lot of ...