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
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 ...
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 ...
-2
votes
1answer
357 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.
1
vote
2answers
623 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 ...
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
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. ...
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 ...