Source code for pyro.contrib.minipyro

"""
Mini Pyro
---------

This file contains a minimal implementation of the Pyro Probabilistic
Programming Language. The API (method signatures, etc.) match that of
the full implementation as closely as possible. This file is independent
of the rest of Pyro, with the exception of the :mod:`pyro.distributions`
module.

An accompanying example that makes use of this implementation can be
found at examples/minipyro.py.
"""
from __future__ import absolute_import, division, print_function

from collections import OrderedDict

import torch

# Pyro keeps track of two kinds of global state:
# i)  The effect handler stack, which enables non-standard interpretations of
#     Pyro primitives like sample();
#     See http://docs.pyro.ai/en/0.3.0-release/poutine.html
# ii) Trainable parameters in the Pyro ParamStore;
#     See http://docs.pyro.ai/en/0.3.0-release/parameters.html

PYRO_STACK = []
PARAM_STORE = {}


[docs]def get_param_store(): return PARAM_STORE
# The base effect handler class (called Messenger here for consistency with Pyro).
[docs]class Messenger(object): def __init__(self, fn=None): self.fn = fn # Effect handlers push themselves onto the PYRO_STACK. # Handlers earlier in the PYRO_STACK are applied first. def __enter__(self): PYRO_STACK.append(self) def __exit__(self, *args, **kwargs): assert PYRO_STACK[-1] is self PYRO_STACK.pop()
[docs] def process_message(self, msg): pass
[docs] def postprocess_message(self, msg): pass
[docs] def __call__(self, *args, **kwargs): with self: return self.fn(*args, **kwargs)
# A first useful example of an effect handler. # trace records the inputs and outputs of any primitive site it encloses, # and returns a dictionary containing that data to the user.
[docs]class trace(Messenger): def __enter__(self): super(trace, self).__enter__() self.trace = OrderedDict() return self.trace # trace illustrates why we need postprocess_message in addition to process_message: # We only want to record a value after all other effects have been applied
[docs] def postprocess_message(self, msg): assert msg["name"] not in self.trace, "all sites must have unique names" self.trace[msg["name"]] = msg.copy()
[docs] def get_trace(self, *args, **kwargs): self(*args, **kwargs) return self.trace
# A second example of an effect handler for setting the value at a sample site. # This illustrates why effect handlers are a useful PPL implementation technique: # We can compose trace and replay to replace values but preserve distributions, # allowing us to compute the joint probability density of samples under a model. # See the definition of elbo(...) below for an example of this pattern.
[docs]class replay(Messenger): def __init__(self, fn, guide_trace): self.guide_trace = guide_trace super(replay, self).__init__(fn)
[docs] def process_message(self, msg): if msg["name"] in self.guide_trace: msg["value"] = self.guide_trace[msg["name"]]["value"]
# block allows the selective application of effect handlers to different parts of a model. # Sites hidden by block will only have the handlers below block on the PYRO_STACK applied, # allowing inference or other effectful computations to be nested inside models.
[docs]class block(Messenger): def __init__(self, fn=None, hide_fn=lambda msg: True): self.hide_fn = hide_fn super(block, self).__init__(fn)
[docs] def process_message(self, msg): if self.hide_fn(msg): msg["stop"] = True
# This limited implementation of PlateMessenger only implements broadcasting.
[docs]class PlateMessenger(Messenger): def __init__(self, fn, size, dim): assert dim < 0 self.size = size self.dim = dim super(PlateMessenger, self).__init__(fn)
[docs] def process_message(self, msg): if msg["type"] == "sample": batch_shape = msg["fn"].batch_shape if len(batch_shape) < -self.dim or batch_shape[self.dim] != self.size: batch_shape = [1] * (-self.dim - len(batch_shape)) + list(batch_shape) batch_shape[self.dim] = self.size msg["fn"] = msg["fn"].expand(torch.Size(batch_shape))
def __iter__(self): return range(self.size)
# apply_stack is called by pyro.sample and pyro.param. # It is responsible for applying each Messenger to each effectful operation.
[docs]def apply_stack(msg): for pointer, handler in enumerate(reversed(PYRO_STACK)): handler.process_message(msg) # When a Messenger sets the "stop" field of a message, # it prevents any Messengers above it on the stack from being applied. if msg.get("stop"): break if msg["value"] is None: msg["value"] = msg["fn"](*msg["args"]) # A Messenger that sets msg["stop"] == True also prevents application # of postprocess_message by Messengers above it on the stack # via the pointer variable from the process_message loop for handler in PYRO_STACK[-pointer-1:]: handler.postprocess_message(msg) return msg
# sample is an effectful version of Distribution.sample(...) # When any effect handlers are active, it constructs an initial message and calls apply_stack.
[docs]def sample(name, fn, obs=None): # if there are no active Messengers, we just draw a sample and return it as expected: if not PYRO_STACK: return fn() # Otherwise, we initialize a message... initial_msg = { "type": "sample", "name": name, "fn": fn, "args": (), "value": obs, } # ...and use apply_stack to send it to the Messengers msg = apply_stack(initial_msg) return msg["value"]
# param is an effectful version of PARAM_STORE.setdefault # When any effect handlers are active, it constructs an initial message and calls apply_stack.
[docs]def param(name, init_value=None): def fn(init_value): value = PARAM_STORE.setdefault(name, init_value) value.requires_grad_() return value # if there are no active Messengers, we just draw a sample and return it as expected: if not PYRO_STACK: return fn(init_value) # Otherwise, we initialize a message... initial_msg = { "type": "param", "name": name, "fn": fn, "args": (init_value,), "value": None, } # ...and use apply_stack to send it to the Messengers msg = apply_stack(initial_msg) return msg["value"]
# boilerplate to match the syntax of actual pyro.plate:
[docs]def plate(name, size, dim): return PlateMessenger(fn=None, size=size, dim=dim)
# This is a thin wrapper around the `torch.optim.Adam` class that # dynamically generates optimizers for dynamically generated parameters. # See http://docs.pyro.ai/en/0.3.0-release/optimization.html
[docs]class Adam(object): def __init__(self, optim_args): self.optim_args = optim_args # Each parameter will get its own optimizer, which we keep track # of using this dictionary keyed on parameters. self.optim_objs = {}
[docs] def __call__(self, params): for param in params: # If we've seen this parameter before, use the previously # constructed optimizer. if param in self.optim_objs: optim = self.optim_objs[param] # If we've never seen this parameter before, construct # an Adam optimizer and keep track of it. else: optim = torch.optim.Adam([param], **self.optim_args) self.optim_objs[param] = optim # Take a gradient step for the parameter param. optim.step()
# This is a unified interface for stochastic variational inference in Pyro. # The actual construction of the loss is taken care of by `loss`. # See http://docs.pyro.ai/en/0.3.0-release/inference_algos.html
[docs]class SVI(object): def __init__(self, model, guide, optim, loss): self.model = model self.guide = guide self.optim = optim self.loss = loss # This method handles running the model and guide, constructing the loss # function, and taking a gradient step.
[docs] def step(self, *args, **kwargs): # This wraps both the call to `model` and `guide` in a `trace` so that # we can record all the parameters that are encountered. Note that # further tracing occurs inside of `loss`. with trace() as param_capture: # We use block here to allow tracing to record parameters only. with block(hide_fn=lambda msg: msg["type"] == "sample"): loss = self.loss(self.model, self.guide, *args, **kwargs) # Differentiate the loss. loss.backward() # Grab all the parameters from the trace. params = [site["value"] for site in param_capture.values()] # Take a step w.r.t. each parameter in params. self.optim(params) # Zero out the gradients so that they don't accumulate. for p in params: p.grad = p.new_zeros(p.shape) return loss.item()
# This is a basic implementation of the Evidence Lower Bound, which is the # fundamental objective in Variational Inference. # See http://pyro.ai/examples/svi_part_i.html for details. # This implementation has various limitations (for example it only supports # random variablbes with reparameterized samplers), but all the ELBO # implementations in Pyro share the same basic logic.
[docs]def elbo(model, guide, *args, **kwargs): # Run the guide with the arguments passed to SVI.step() and trace the execution, # i.e. record all the calls to Pyro primitives like sample() and param(). guide_trace = trace(guide).get_trace(*args, **kwargs) # Now run the model with the same arguments and trace the execution. Because # model is being run with replay, whenever we encounter a sample site in the # model, instead of sampling from the corresponding distribution in the model, # we instead reuse the corresponding sample from the guide. In probabilistic # terms, this means our loss is constructed as an expectation w.r.t. the joint # distribution defined by the guide. model_trace = trace(replay(model, guide_trace)).get_trace(*args, **kwargs) # We will accumulate the various terms of the ELBO in `elbo`. elbo = 0. # Loop over all the sample sites in the model and add the corresponding # log p(z) term to the ELBO. Note that this will also include any observed # data, i.e. sample sites with the keyword `obs=...`. for site in model_trace.values(): if site["type"] == "sample": elbo = elbo + site["fn"].log_prob(site["value"]).sum() # Loop over all the sample sites in the guide and add the corresponding # -log q(z) term to the ELBO. for site in guide_trace.values(): if site["type"] == "sample": elbo = elbo - site["fn"].log_prob(site["value"]).sum() # Return (-elbo) since by convention we do gradient descent on a loss and # the ELBO is a lower bound that needs to be maximized. return -elbo