Skip to content

Releases: google-deepmind/PGMax

v0.6.1

10 Aug 21:45
Compare
Choose a tag to compare
v0.6.1 Pre-release
Pre-release

What has changed

  • Fix installing setup requirements
  • Remove use of deprecated jnp.NINF
  • Remove use of deprecated np.product

v0.6.0

10 May 17:01
Compare
Choose a tag to compare
v0.6.0 Pre-release
Pre-release

What has changed

⚠️ This release changes the high-level API ⚠️

Deprecation notice

  • bp.run_bp is deprecated in favor of bp.run. bp.run_bp will be removed in future releases.
  • Dropped support for python 3.7.

New features

Changes

  • Implemented a unified interface for the BP and the SDLP solvers.
    • Solvers can be created via
       inferer = infer.build_inferer(fg.bp_state, backend=BACKEND)
      where BACKEND can be "bp" or "sdlp".
  • Added a run_with_diffs function to the BP solver to monitor BP convergence.
  • Improved the stability of message updates at low temperatures for logical factors and pool factors.
  • Improved the numerical stability of the messages / potentials clipping.
  • Improved the handling of various corner cases, including variables with single state, empty variable groups, energy with infinite potentials, etc..

Examples

  • Updated all example colabs to use the new unified interface.
  • Added a colab notebook which uses the SDLP solver to
    1. Run inference on an Ising Model and compare its results with BP
    2. Extract sparse feature activations from visually complex binary scenes.

v0.5.1

10 Mar 00:56
Compare
Choose a tag to compare
v0.5.1 Pre-release
Pre-release

What has changed

v0.5.0

23 Feb 23:54
Compare
Choose a tag to compare
v0.5.0 Pre-release
Pre-release

PGMax is now part of DeepMind 🎉!

Following the acquisition of Vicarious by Alphabet in 2022, PGMax developments have now moved from Vicarious to DeepMind.

What has changed