There's an excellent course on PGM by Koller on Coursera. My friend took it and now he's a PGM evangelist. If you are wondering where PGM lies in the spectrum of machine learning, you should research the difference between generative and discriminate modeling. We have been driven to PGM to solve our ML problem that was hard to frame as A NN. Mainly because we had some priors we needed to encode to make the problem tr…
An Introduction to Probabilistic Graphical Models (2003) [pdf]
21–30 of 37 posts
Re: An Introduction to Probabilistic Graphical Models (2003) [pdf]
#22Re: An Introduction to Probabilistic Graphical Models (2003) [pdf]
#23A few comments have mentioned neural nets in this post. adamnemecek mentions in this thread that PGMs are a superset of neural networks, and and Thomas Wiecki has a few excellent blog posts on creating bayesian neural networks using pymc3.[0][1][2] If you're curious about how these two concepts can be brought together I highly recommend reading through these three posts. [0] http://twiecki.github.io/blog/2016/06/01/b…
Do they train with backpropagation efficiently?
Re: An Introduction to Probabilistic Graphical Models (2003) [pdf]
#24Earlier quoted context omitted.
It's linear in singly connected networks, not for multiply connected graphs. However NP-hard is the worst case as I mentioned (p288 Koller & Friedman)
by multiply connected graphs do you mean graphs with cycles ?
Re: An Introduction to Probabilistic Graphical Models (2003) [pdf]
#25Earlier quoted context omitted.
by multiply connected graphs do you mean graphs with cycles ?
Yes, although in directed acyclic graphs the 'cycles' manifest as multiple paths to a node.
Re: An Introduction to Probabilistic Graphical Models (2003) [pdf]
#26Re: An Introduction to Probabilistic Graphical Models (2003) [pdf]
#27One of the best course I have ever taken, F. Bach and G. Obozinski are incredible teachers.
Re: An Introduction to Probabilistic Graphical Models (2003) [pdf]
#28Re: An Introduction to Probabilistic Graphical Models (2003) [pdf]
#29This course also referred M.I Jordan book: http://imagine.enpc.fr/~obozinsg/teaching/mva_gm/fall2016/ One of the best course I have ever taken, F. Bach and G. Obozinski are incredible teachers.
Re: An Introduction to Probabilistic Graphical Models (2003) [pdf]
#30Earlier quoted context omitted.
What is the connection other than "they both have graphs somewhere in them"? I sort of see what you mean since NNs transport information across a graph in a straightforward (non-loopy) way, and PGMs can propagate information in crazy (neverending loops) ways when doing belief propagation...
From my limited understanding, pure NNs are not able to express confidence in predictions. By adding probability to the NN, we can have both predictions and confidence scores. In practice, noise is being injected, or connections dropped out randomly, then predictions averaged over multiple runs.