Tagged Questions
The bayesian-networks tag has no wiki summary.
16
votes
5answers
2k 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 ...
11
votes
4answers
1k 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 ...
9
votes
8answers
6k views
Bayesian networks tutorial
for a beginner, which is the best book to start with for studying Bayesian Networks?
Thanks,
Lucian
6
votes
2answers
274 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 ...
5
votes
3answers
490 views
Library for Bayesian Networks
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.
...
5
votes
3answers
167 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 ...
5
votes
2answers
661 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 ...
5
votes
3answers
2k 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 ...
4
votes
1answer
362 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 ...
4
votes
2answers
226 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
2answers
193 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 ...
3
votes
0answers
53 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
80 views
Should I do Material Clasification/ Recognition using histograms or some other higher Math tool, like Bayesian Networks?
I'm learning the basics of OpenCV, and I thought a good project would help me make the studying more fun. After thinking some ideas I came up with some material recognition project. Let's say, I got ...
2
votes
1answer
233 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 ...
2
votes
2answers
278 views
bayesian network library for iphone?
i m looking for a bayesian network library that work on the iphone.
any tip ?
2
votes
1answer
657 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?
2
votes
3answers
325 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 ...
2
votes
1answer
635 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
3answers
96 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
1answer
48 views
which open source java library I can use to build a Bayesian network?
which opensource library I can use to build a Bayesian network?
I need a java library that builds a Bayesian network and I need to access the values of the conditional probability of CPT.
Thanks
1
vote
0answers
86 views
Bayesian Network. Hypothesis probabilities, how to find?
In this Bayesian network implemented with BNT.
False=1;
True=2;
Adjacent=1;
Number_of_nodes=7;
Numero_of_evidences=4;
Numero_of_hypothesis=3;
...
1
vote
0answers
105 views
Bayes Net Toolbox for Matlab. Error?
This is a bit modified (I need a similar example to my application) sprinkler example in the BNT (Bayes Net Toolbox) of Matlab.
I'm trying to run this code:
% The nodes.
X = 1;
Q = 2;
...
1
vote
1answer
45 views
How to use Bayesian analysis to compute and combine weights for multiple rules to identify books
I am experimenting with machine learning in general, and Bayesian analysis in particular, by writing a tool to help me identify my collection of e-books. The input data consist of a set of e-book ...
1
vote
3answers
112 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.
1
vote
2answers
225 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?.
1
vote
1answer
48 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 ...
1
vote
4answers
409 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 ...
1
vote
2answers
464 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 ...
1
vote
1answer
730 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
313 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.
1
vote
1answer
413 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 ...
0
votes
1answer
49 views
bayes net open source [closed]
Can anyone recommend a good opensource or free bayes net software program?
I have been using baysealab with a class, but my account will expire and I'd like to continue building and using bns.
0
votes
1answer
49 views
about Bayes Net Toolbox for Matlab
i'm a new one to learn Bayes Net Toolbox for Matlab. and i have try 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
35 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
122 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
1answer
106 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
0answers
139 views
Bayesian Belief Network [closed]
does anybody know what are the advantages and disadvantages of Bayesian Belief network over propositional logic based system?
Thanks
0
votes
2answers
524 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. ...
0
votes
2answers
293 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
245 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
1answer
232 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
318 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
...
0
votes
1answer
665 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 ...
0
votes
0answers
170 views
how to convert bayesian network to a factor graph?
How can I convert a bayesian network to a factor graph? Is there any good c++/java algorthm or code available for that?
If I convert a bayesian network to a factor graph will I loss any information?
...
0
votes
1answer
182 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. ...
0
votes
1answer
506 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 ...