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
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
vote
0answers
39 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 ...
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
14 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 ...
-4
votes
0answers
21 views

What is the purpose of Bayes Nets [closed]

I have seen a lot of explanations of what bayes nets are, but I simply cannot wrap my head around their use in code. So here is my three part question. Am I right in my definition of bayes nets? ...
0
votes
1answer
102 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 ...
-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
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 ...
1
vote
2answers
626 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 ...
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 ...
1
vote
2answers
60 views

In Bayesian networks, what does it mean a node is “instantiated”

i am trying to follow these slides on bayesian networks. Can anybody explain me what it means that a node in a bayesian network is "instantiated"?
0
votes
2answers
63 views

Java Bayesian Inference framework for huge data-set

Please advise on a Java Bayesian Inference framework that: 1. Is open-source 2. Can be used programmatically from Java app. 3. Will be able to process 10 GB data-set running on a single host (node) ...
3
votes
1answer
2k views

What is the difference between a Decision Tree and a Bayesian Network?

If I understand it right, both use Bayes Theorem to generate an acyclic graph and calculate percentages based on functions applied at every node. What is the difference?
0
votes
2answers
49 views

Read data frame of factors (in R)

I am a novice to R. To use in a package I need a "data frame of factors". I have a text file of form: A B C ... 1 3 2 2 2 3 3 1 1 2 2 1 3 1 2 So each column represents a variable that can be 1, 2 ...
1
vote
1answer
39 views

Classifying new instance with bayesian net

Say I have the following bayesian network: And I want to classify a new instance on wether H=true or H=false, the new instance looks e.g. like this: Fl=true, A=false, S=true, and Ti=false. How ...
0
votes
0answers
65 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
23 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
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
155 views

How to create a joint probability table from existing conditioinal probability tables? (CPTs)

I have the following tables ,with the dependencies below : And I want to create the joint-probability table for P(M,P,W,B) , which looks like this (and of course ,you can assume that the below ...
2
votes
1answer
264 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
79 views

Performance of Scikits NB vs NLTK NB

I have compared the performance of two implementations of Naive Bayes in both NLTK and Scikits (Bernoulli versions, class priors doesn't matter as I am using exactly the same amount of training ...
0
votes
1answer
137 views

Design of Bayesian networks: Understanding the difference between “States” and “Nodes”

I'm designing a small Bayesian Network using the program "Hugin Lite". The problem is that I have difficulty understanding the difference between "Nodes"(visual circles) and "States"(witch are the ...
4
votes
2answers
411 views

Designing bayesian networks

I have a basic question about Bayesian networks. Let's assume we have an engine, that with 1/3 probability can stop working. I'll call this variable ENGINE. If it stops working, then your car ...
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
54 views

How to Evaluate Given Probability With Microsoft Bayesian Network Editor?

I am working on Bayesian Networks and Microsoft has a tool for it: http://research.microsoft.com/en-us/um/redmond/groups/adapt/msbnx/default.aspx When I say evaluate to program it evaluates P(X). ...
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
2answers
209 views

Bayesian inference package for java [closed]

Is there a particular package in java where I can train the bayesian network given a data such as: 20/10/2012 12:00 - 11 red clothes, 19 green clothes left in stock 21/10/2012 12:00 - 10 red clothes, ...
0
votes
1answer
87 views

Recommended AI/machine learning: profiles input, income prediction

My project looks like this: my data set is a bunch of profiles of people, with various attributes, e.g. boolean hasJob and int healthScore, and their income. Using this data, I'm trying to predict ...
0
votes
2answers
625 views

API for Bayesian networks with Java

Is there any API for building bayesian networks of influence diagram with java Thanks in advance
6
votes
1answer
735 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 ...
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 ...
5
votes
1answer
3k views

Decision tree VS Naive Bayes classifier

I am doing some researches about different datamining techniques and came accross something that I could not figure out. If any one have any idea that would be great. In which cases is it better to ...
10
votes
3answers
2k views

Library for Bayesian Networks [closed]

Hello fellow Number crunchers As the headline suggests, I am looking for a library for learning and inference of Bayesian Networks. I have already found some, but I am hoping for a recommendation. ...
16
votes
6answers
4k views

Bayesian spam filtering library for Python

I am looking for a Python library which does Bayesian Spam Filtering. I looked at SpamBayes and OpenBayes, but both seem to be unmaintained (I might be wrong). Can anyone suggest a good Python (or ...
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 ...
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 ...
1
vote
1answer
296 views

Is there step by step tutorial on creating bayesian network?

I'm looking for tutorial on creating bayesian network. I have theoretical information and background but I would like to see it in practise on some real-life example. Could you recommend me some ...
6
votes
2answers
1k views

How to model a Bayesian network or, more generally, a directed weighted graph, in SQL?

I found a few articles online providing examples of how to model graphs of various kinds (DAGs, in particular) in SQL, but they all seemed enormously complex, given the relative simplicity of what ...
-1
votes
1answer
234 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?
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. ...
6
votes
4answers
778 views

Bayesian networks in Scala

I'm looking for a library to create Bayes nets and perform learning and inference on them in Scala (or Java, in case of lack of a better solution). The library should be actively maintained, ...
-2
votes
1answer
361 views

Bayesian network Classifier

I'm looking for an Open Source Bayesian network Classifier library written in c++. Would appreciate any help in finding one.
-4
votes
2answers
166 views

Naive bayes python - php - javascript (node) [closed]

I'm trying to create a data extractor algoritm from group buying sites to build an agregator for deals. First I need an algorith that will extract title,price,discount,image,coordinates. I have ...
3
votes
1answer
88 views

Looking for guidance on multi-part graphical gesture recognition

I'm trying to research existing works in the area of recognizing complex graphical gestures, but struggling to find good search terms or clear documents in the field. For example, I might want to ...
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 ...
2
votes
1answer
56 views

Passage: usage example

Has anyone used Passage, the PArallel SAmpler GEnerator? Potentially it could be very useful to me, but the only documentation I found is the three line README on Github ...
5
votes
1answer
366 views

Use Google Go's Goroutines To Create A Bayes Network

I have a large dataset of philosophic arguments, each of which connect to other arguments as proof or disproof of a given statement. A root statement can have many proofs and disproofs, each of which ...
3
votes
2answers
1k views

Implement Bayes Net

Is there any c or java example implementing Bayesian Net? I want to solve some things but Do not where to start?.
0
votes
0answers
135 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 ...
0
votes
2answers
80 views

Why do v structures not contribute to flow of probabilistic influence?

I recently went through a video which said that in the relation x->W<-Y, X does not influence y.X has causal relationship to W and W has evidential relationship to Y .So will X not affect Y ?

1 2