Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Graphical model

From Wikipedia, the free encyclopedia
Probabilistic model
This article is about the representation of probability distributions using graphs. For the computer graphics journal, seeGraphical Models.
Part of a series on
Machine learning
anddata mining
This article includes a list ofgeneral references, butit lacks sufficient correspondinginline citations. Please help toimprove this article byintroducing more precise citations.(May 2017) (Learn how and when to remove this message)

Agraphical model orprobabilistic graphical model (PGM) orstructured probabilistic model is aprobabilistic model for which agraph expresses theconditional dependence structure betweenrandom variables. Graphical models are commonly used inprobability theory,statistics—particularlyBayesian statistics—andmachine learning.

Types

[edit]

Generally, probabilistic graphical models use a graph-based representation as the foundation for encoding a distribution over a multi-dimensional space and a graph that is a compact orfactorized representation of a set of independences that hold in the specific distribution. Two branches of graphical representations of distributions are commonly used, namely,Bayesian networks andMarkov random fields. Both families encompass the properties of factorization and independences, but they differ in the set of independences they can encode and the factorization of the distribution that they induce.[1]

Undirected Graphical Model

[edit]
An undirected graph with four vertices.
An undirected graph with four vertices

The undirected graph shown may have one of several interpretations; the common feature is that the presence of an edge implies some sort of dependence between the corresponding random variables. From this graph, we might deduce that B, C, and D are allconditionally independent given A. This means that if the value of A is known, then the values of B, C, and D provide no further information about each other. Equivalently (in this case), the joint probability distribution can be factorized as:

P[A,B,C,D]=fAB[A,B]fAC[A,C]fAD[A,D]{\displaystyle P[A,B,C,D]=f_{AB}[A,B]\cdot f_{AC}[A,C]\cdot f_{AD}[A,D]}

for some non-negative functionsfAB,fAC,fAD{\displaystyle f_{AB},f_{AC},f_{AD}}.

Bayesian network

[edit]
Main article:Bayesian network
Example of a directed acyclic graph on four vertices.
Example of a directed acyclic graph on four vertices

If the network structure of the model is adirected acyclic graph, the model represents a factorization of the jointprobability of all random variables. More precisely, if the events areX1,,Xn{\displaystyle X_{1},\ldots ,X_{n}} then the joint probability satisfies

P[X1,,Xn]=i=1nP[Xi|pa(Xi)]{\displaystyle P[X_{1},\ldots ,X_{n}]=\prod _{i=1}^{n}P[X_{i}|{\text{pa}}(X_{i})]}

wherepa(Xi){\displaystyle {\text{pa}}(X_{i})} is the set of parents of nodeXi{\displaystyle X_{i}} (nodes with edges directed towardsXi{\displaystyle X_{i}}). In other words, thejoint distribution factors into a product of conditional distributions. For example, in the directed acyclic graph shown in the Figure this factorization would be

P[A,B,C,D]=P[A]P[B|A]P[C|A]P[D|A,C]{\displaystyle P[A,B,C,D]=P[A]\cdot P[B|A]\cdot P[C|A]\cdot P[D|A,C]}.

Any two nodes areconditionally independent given the values of their parents. In general, any two sets of nodes are conditionally independent given a third set if a criterion calledd-separation holds in the graph. Local independences and global independences are equivalent in Bayesian networks.

This type of graphical model is known as a directed graphical model,Bayesian network, or belief network. Classic machine learning models likehidden Markov models,neural networks and newer models such asvariable-order Markov models can be considered special cases of Bayesian networks.

One of the simplest Bayesian Networks is theNaive Bayes classifier.

Cyclic Directed Graphical Models

[edit]
An example of a directed graphical model.
An example of a directed, cyclic graphical model. Each arrow indicates a dependency. In this example: D depends on A, B, and C; and C depends on B and D; whereas A and B are each independent.

The next figure depicts a graphical model with a cycle. This may be interpreted in terms of each variable 'depending' on the values of its parents in some manner. The particular graph shown suggests a joint probability density that factors as

P[A,B,C,D]=P[A]P[B]P[C,D|A,B]{\displaystyle P[A,B,C,D]=P[A]\cdot P[B]\cdot P[C,D|A,B]},

but other interpretations are possible.[2]

Other types

[edit]
TAN model for "corral dataset"
  • Targeted Bayesian network learning (TBNL)
    TBNL model for "corral dataset"
  • Afactor graph is an undirectedbipartite graph connecting variables and factors. Each factor represents a function over the variables it is connected to. This is a helpful representation for understanding and implementingbelief propagation.
  • Aclique tree or junction tree is atree ofcliques, used in thejunction tree algorithm.
  • Achain graph is a graph which may have both directed and undirected edges, but without any directed cycles (i.e. if we start at any vertex and move along the graph respecting the directions of any arrows, we cannot return to the vertex we started from if we have passed an arrow). Both directed acyclic graphs and undirected graphs are special cases of chain graphs, which can therefore provide a way of unifying and generalizing Bayesian and Markov networks.[3]
  • Anancestral graph is a further extension, having directed, bidirected and undirected edges.[4]
  • Random field techniques
  • Arestricted Boltzmann machine is abipartitegenerative model specified over an undirected graph.
  • Astaged tree is an extension of a Bayesian network for sequences of discrete valued events. They allow for context specific independences and non-product sample spaces.

Applications

[edit]

The framework of the models, which provides algorithms for discovering and analyzing structure in complex distributions to describe them succinctly and extract the unstructured information, allows them to be constructed and utilized effectively.[1] Applications of graphical models includecausal inference,information extraction,speech recognition,computer vision, decoding oflow-density parity-check codes, modeling ofgene regulatory networks, gene finding and diagnosis of diseases, andgraphical models for protein structure.

See also

[edit]

Notes

[edit]
  1. ^abKoller, D.;Friedman, N. (2009).Probabilistic Graphical Models. Massachusetts: MIT Press. p. 1208.ISBN 978-0-262-01319-2. Archived fromthe original on 2014-04-27.
  2. ^Richardson, Thomas (1996). "A discovery algorithm for directed cyclic graphs".Proceedings of the Twelfth Conference on Uncertainty in Artificial Intelligence. Morgan Kaufmann Pub.ISBN 978-1-55860-412-4.
  3. ^Frydenberg, Morten (1990). "The Chain Graph Markov Property".Scandinavian Journal of Statistics.17 (4):333–353.JSTOR 4616181.MR 1096723.
  4. ^Richardson, Thomas; Spirtes, Peter (2002). "Ancestral graph Markov models".Annals of Statistics.30 (4):962–1030.CiteSeerX 10.1.1.33.4906.doi:10.1214/aos/1031689015.MR 1926166.Zbl 1033.60008.

Further reading

[edit]

Books and book chapters

[edit]
  • Barber, David (2012).Bayesian Reasoning and Machine Learning. Cambridge University Press.ISBN 978-0-521-51814-7.

Journal articles

[edit]

Other

[edit]

External links

[edit]
Continuous data
Center
Dispersion
Shape
Count data
Summary tables
Dependence
Graphics
Study design
Survey methodology
Controlled experiments
Adaptive designs
Observational studies
Statistical theory
Frequentist inference
Point estimation
Interval estimation
Testing hypotheses
Parametric tests
Specific tests
Goodness of fit
Rank statistics
Bayesian inference
Correlation
Regression analysis (see alsoTemplate:Least squares and regression analysis
Linear regression
Non-standard predictors
Generalized linear model
Partition of variance
Categorical
Multivariate
Time-series
General
Specific tests
Time domain
Frequency domain
Survival
Survival function
Hazard function
Test
Biostatistics
Engineering statistics
Social statistics
Spatial statistics
Retrieved from "https://en.wikipedia.org/w/index.php?title=Graphical_model&oldid=1318355124"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp