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).
4
votes
1answer
1k views
How to learn a Bayesian Network (structure+parameters) with the WEKA API?
Does anyone know the "proper" procedure to learn a Bayesian Network from data using the WEKA API? I can't find good instructions in the WEKA documentation.
Based on the documentation and what each ...
1
vote
2answers
2k views
Bayesian Classifier Tutorial
I am trying to learn how to implement a Bayesian filter. I am finding lots of mathematical explanations, but very few examples with actual code. If anyone can give me a link, I'd be very appreciative. ...
1
vote
3answers
191 views
References for Bayesian and Neural networks
What are the best tutorials you found so far about Neural and Bayesian networks?
I don't need books but, instead, some basic introduction to understand and use related libraries.
0
votes
2answers
642 views
Implement Bayesian inference using Java
Is there any implementation in java like this in php?
<?php
/**
* Returns conditional probability of $A given $B and $Data.
* $Data is an indexed array. Each element of the $Data array
* ...
0
votes
1answer
579 views
AIMA implementation bayesian networks
I would like to code bayesian networks in java to understand them better, and I have found some code of Artificial Intelligence A Modern Approach (3rd Edition), "AIMA"
Do you recommend I read the ...
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 ...
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
1answer
745 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
...
2
votes
1answer
1k views
Bayesian Network: Independance and Conditional Independance
I'm having some misunderstanding concerning Bayesian network. My main misunderstanding are independence and conditional independence!!
If e.g. I have to calculate
P(Burglary|Johncall),
is it ...
7
votes
2answers
699 views
What does a Bayesian Classifier score represent?
I'm using the ruby classifier gem whose classifications method returns the scores for a given string classified against the trained model.
Is the score a percentage? If so, is the maximum difference ...
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.
...
1
vote
1answer
101 views
Computing the number of steps to marginalize a Bayesian network
I'm trying to make an algorithm that will find the most efficient ordering for eliminating nodes in a small Bayesian network (represented by a DAG). All of the nodes are boolean and can take two ...
2
votes
4answers
885 views
Is there a java alternative to the Bayesian Belief Network Framework “Infer.NET”?
Is the are java alternative to Bayesian Belief Network framework - Infer.NET?
Preferable if it be scalable(online learning for large datasets), well-supported(last updated since 2010) and open source ...
4
votes
1answer
460 views
General purpose algorithm for triangulating an undirected graph?
I am playing around with implementing a junction tree algorithm for belief propagation on a Bayesian Network. I'm struggling a bit with triangulating the graph so the junction trees can be formed.
I ...
19
votes
4answers
3k views
pythonic implementation of Bayesian networks for a specific application
This is why I'm asking this question:
Last year I made some C++ code to compute posterior probabilities for a particular type of model (described by a Bayesian network). The model worked pretty well ...
2
votes
2answers
442 views
bayesian network library for iphone?
i m looking for a bayesian network library that work on the iphone.
any tip ?
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
vote
1answer
927 views
difference between artificial neural network and Bayesian network
I am a student working on an internship project where in we are using Bayesian networks to predict a possible outcome from a given set of discrete parent variables.We now intend to use artificial ...
5
votes
3answers
219 views
AI / Statistical methods for determining the name of a colour
I'm thinking about writing a little library to make a guess at the name of an (RGB value) colour, from a predetermined list of candidates.
My first attempt was based purely on pythagorean distance ...
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?
1
vote
2answers
845 views
Confusion Matrix of Bayesian Network
I'm trying to understand bayesian network. I have a data file which has 10 attributes, I want to acquire the confusion table of this data table ,I thought I need to calculate tp,fp, fn, tn of all ...
4
votes
2answers
409 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
...
4
votes
3answers
526 views
What is the difference between causal models and directed graphical models?
What is the difference between causal models and directed graphical models?
or:
What is the difference between causal relationships and directed probabilistic relationships?
or, even better:
What ...
1
vote
1answer
1k views
Bayesian Belief Network
In the Kevin Murphy's example of Bayesian Network the Infer.NET library is used. Is the Infer.NET required?
1
vote
4answers
388 views
Inference algorithm of Shenoy and Shafer
I have heard of this algorithm, but is this algorithm good to use it with Bayesian Belief networks? Hugin is based on it and I'm looking for a book / article on this algorithm.
4
votes
2answers
293 views
Using c#,c/c++ or java to improve BBN with GA
I have a little problem in my little project , I wish that someone here could help me!
I am planning to use a bayesian network as a decision factor in my game AI and I want to improve the decision ...
2
votes
1answer
930 views
Kim and Pearl's Message passing algorithm in Bayesian Network
Can you give me a good link/resource where i could find a good implementation of Bayesian network ,I'm specially interested in Conditional Probability Table generation and how to pass messages/update ...
1
vote
1answer
609 views
Bayesian Network for Spam Filtering
I want to use Bayesian Network mechanism for spam filtering. How do you think it should look a proper topology of the network? What about naive Bayes model? (The naive Bayes model is sometimes called ...
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 ...
12
votes
8answers
9k views
Bayesian networks tutorial
for a beginner, which is the best book to start with for studying Bayesian Networks?
Thanks,
Lucian
6
votes
2answers
956 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 ...
6
votes
3answers
4k views
What is the relationship between bayesian and neural networks?
I'm looking for computationally heavy tasks to implement with CUDA and wonder if neural networks or bayesian networks might apply. This is not my question, though, but rather what the relation between ...
