Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package graphframes
    Definition Classes
    org
  • package examples
    Definition Classes
    graphframes
  • object BeliefPropagation

    Example code for Belief Propagation (BP)

    Example code for Belief Propagation (BP)

    This provides a template for building customized BP algorithms for different types of graphical models.

    This example:

    • Ising model on a grid
    • Parallel Belief Propagation using colored fields

    Ising models are probabilistic graphical models over binary variables xi. Each binary variable xi corresponds to one vertex, and it may take values -1 or +1. The probability distribution P(X) (over all xi) is parameterized by vertex factors ai and edge factors bij:

    P(X) = (1/Z) * exp[ \sum_i a_i x_i + \sum_{ij} b_{ij} x_i x_j ]

    where Z is the normalization constant (partition function). See Wikipedia for more information on Ising models.

    Belief Propagation (BP) provides marginal probabilities of the values of the variables xi, i.e., P(xi) for each i. This allows a user to understand likely values of variables. See Wikipedia for more information on BP.

    We use a batch synchronous BP algorithm, where batches of vertices are updated synchronously. We follow the mean field update algorithm in Slide 13 of the talk slides from: Wainwright. "Graphical models, message-passing algorithms, and convex optimization."

    The batches are chosen according to a coloring. For background on graph colorings for inference, see for example: Gonzalez et al. "Parallel Gibbs Sampling: From Colored Fields to Thin Junction Trees." AISTATS, 2011.

    The BP algorithm works by:

    • Coloring the graph by assigning a color to each vertex such that no neighboring vertices share the same color.
    • In each step of BP, update all vertices of a single color. Alternate colors.
    Definition Classes
    examples
  • EdgeAttr
  • VertexAttr

case class EdgeAttr(b: Double) extends Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EdgeAttr
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new EdgeAttr(b: Double)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from EdgeAttr to any2stringadd[EdgeAttr] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (EdgeAttr, B)
    Implicit
    This member is added by an implicit conversion from EdgeAttr to ArrowAssoc[EdgeAttr] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val b: Double
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. def ensuring(cond: (EdgeAttr) ⇒ Boolean, msg: ⇒ Any): EdgeAttr
    Implicit
    This member is added by an implicit conversion from EdgeAttr to Ensuring[EdgeAttr] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (EdgeAttr) ⇒ Boolean): EdgeAttr
    Implicit
    This member is added by an implicit conversion from EdgeAttr to Ensuring[EdgeAttr] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): EdgeAttr
    Implicit
    This member is added by an implicit conversion from EdgeAttr to Ensuring[EdgeAttr] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): EdgeAttr
    Implicit
    This member is added by an implicit conversion from EdgeAttr to Ensuring[EdgeAttr] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  24. def [B](y: B): (EdgeAttr, B)
    Implicit
    This member is added by an implicit conversion from EdgeAttr to ArrowAssoc[EdgeAttr] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from EdgeAttr to StringFormat[EdgeAttr] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from EdgeAttr to any2stringadd[EdgeAttr]

Inherited by implicit conversion StringFormat from EdgeAttr to StringFormat[EdgeAttr]

Inherited by implicit conversion Ensuring from EdgeAttr to Ensuring[EdgeAttr]

Inherited by implicit conversion ArrowAssoc from EdgeAttr to ArrowAssoc[EdgeAttr]

Ungrouped