vote up 3 vote down star
1

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 the two network types is. They seem very related, especially if you look at bayesian networks with a learning capability (which the article on wikipedia mentions). At a glance, bayesian networks look at bit like a specific type of neural networks. Can anyone sum up their relationship, and if there is any connection beyond the apparent similarity?

flag

67% accept rate

3 Answers

vote up 4 vote down check

Bayesian networks represent independence (and dependence) relationships between variables. Thus, the links represent conditional relationships in the probabilistic sense. Neural networks, generally speaking, have no such direct interpretation, and in fact the intermediate nodes of most neural networks are discovered features, instead of having any predicate associated with them in their own right.

link|flag
Hmmm ... I always had the impression that bayesian statistics was all about discovering not assigning relationships. – le dorfier Nov 26 '08 at 3:26
1  
That's right, to an extent, and thus there's a difference between learning the structure of a Bayesian network, and learning a given network's parameters. It turns out that you can learn several plausible structures, but it's hard to know if you are missing variables. See "Causality" by Judea Pearl – John the Statistician Nov 26 '08 at 3:51
Actually, the more I think about it, the key point to emphasize is that the nodes and links are connected through Bayes rule, and as such are subject to Bayesian updates upon further data. Beyond this, I'm not sure to what can appropriately be ascribed as Bayesian. – John the Statistician Nov 26 '08 at 4:02
vote up 1 vote down

Indeed they are. I see a bayesian network as a neural network applying the Baye's Theorem on large scale, but I don't remember details. I know where you can find them and I recommend this book for that.

link|flag
vote up 1 vote down

It is reported that they are more resistant to the "overtraining" that is seen in some neural networks. In other words some neural networks become so "trained" to the observed measurements used in training that they aren't useful for the general cases.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.