Tagged Questions

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 ...
6
votes
2answers
273 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
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 ...
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 ...
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
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
95 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
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; ...
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
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
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. ...