-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Optional McBackend support #6510
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,4 @@ dependencies: | |
- types-cachetools | ||
- pip: | ||
- numdifftools>=0.9.40 | ||
- mcbackend>=0.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,4 @@ dependencies: | |
- types-cachetools | ||
- pip: | ||
- numdifftools>=0.9.40 | ||
- mcbackend>=0.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,286 @@ | ||
# Copyright 2023 The PyMC Developers | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import base64 | ||
import logging | ||
import pickle | ||
|
||
from typing import Any, Dict, List, Mapping, Optional, Sequence, Tuple, Union, cast | ||
|
||
import hagelkorn | ||
import mcbackend as mcb | ||
import numpy as np | ||
|
||
from mcbackend.npproto.utils import ndarray_from_numpy | ||
from pytensor.compile.sharedvalue import SharedVariable | ||
from pytensor.graph.basic import Constant | ||
|
||
from pymc.backends.base import IBaseTrace | ||
from pymc.model import Model | ||
from pymc.pytensorf import PointFunc | ||
from pymc.step_methods.compound import ( | ||
BlockedStep, | ||
CompoundStep, | ||
StatsBijection, | ||
flat_statname, | ||
flatten_steps, | ||
) | ||
|
||
_log = logging.getLogger("pymc") | ||
|
||
|
||
def find_data(pmodel: Model) -> List[mcb.DataVariable]: | ||
"""Extracts data variables from a model.""" | ||
observed_rvs = {pmodel.rvs_to_values[rv] for rv in pmodel.observed_RVs} | ||
dvars = [] | ||
# All data containers are named vars! | ||
for name, var in pmodel.named_vars.items(): | ||
dv = mcb.DataVariable(name) | ||
if isinstance(var, Constant): | ||
dv.value = ndarray_from_numpy(var.data) | ||
elif isinstance(var, SharedVariable): | ||
dv.value = ndarray_from_numpy(var.get_value()) | ||
else: | ||
continue | ||
dv.dims = list(pmodel.named_vars_to_dims.get(name, [])) | ||
dv.is_observed = var in observed_rvs | ||
dvars.append(dv) | ||
return dvars | ||
|
||
|
||
def get_variables_and_point_fn( | ||
model: Model, initial_point: Mapping[str, np.ndarray] | ||
) -> Tuple[List[mcb.Variable], PointFunc]: | ||
"""Get metadata on free, value and deterministic model variables.""" | ||
# The samplers act only on the inputs needed for the log-likelihood, | ||
# but the user is interested in transformed variables and deterministics. | ||
vvars = model.value_vars | ||
vars = model.unobserved_value_vars | ||
# Below we compilt the "point function" that transforms a draw to the set | ||
# of untransformed, transformed and deterministic variables that will be traced. | ||
point_fn = model.compile_fn(vars, inputs=vvars, on_unused_input="ignore", point_fn=True) | ||
point_fn = cast(PointFunc, point_fn) | ||
point = point_fn(initial_point) | ||
|
||
names = [v.name for v in vars] | ||
dtypes = [v.dtype for v in vars] | ||
shapes = [v.shape for v in point] | ||
deterministics = {d.name for d in model.deterministics} | ||
variables = [ | ||
mcb.Variable( | ||
name=name, | ||
dtype=str(dtype), | ||
shape=list(shape), | ||
dims=list(model.named_vars_to_dims.get(name, [])), | ||
is_deterministic=name in deterministics, | ||
) | ||
for name, dtype, shape in zip(names, dtypes, shapes) | ||
] | ||
return variables, point_fn | ||
|
||
|
||
class ChainRecordAdapter(IBaseTrace): | ||
"""Wraps an McBackend ``Chain`` as an ``IBaseTrace``.""" | ||
|
||
def __init__( | ||
self, chain: mcb.Chain, point_fn: PointFunc, stats_bijection: StatsBijection | ||
) -> None: | ||
# Assign attributes required by IBaseTrace | ||
self.chain = chain.cmeta.chain_number | ||
self.varnames = [v.name for v in chain.rmeta.variables] | ||
stats_dtypes = {s.name: np.dtype(s.dtype) for s in chain.rmeta.sample_stats} | ||
self.sampler_vars = [ | ||
{sname: stats_dtypes[fname] for fname, sname, is_obj in sstats} | ||
for sstats in stats_bijection._stat_groups | ||
] | ||
|
||
self._chain = chain | ||
self._point_fn = point_fn | ||
self._statsbj = stats_bijection | ||
super().__init__() | ||
|
||
def record(self, draw: Mapping[str, np.ndarray], stats: Sequence[Mapping[str, Any]]): | ||
values = self._point_fn(draw) | ||
value_dict = {n: v for n, v in zip(self.varnames, values)} | ||
stats_dict = self._statsbj.map(stats) | ||
# Apply pickling to objects stats | ||
for fname in self._statsbj.object_stats.keys(): | ||
val_bytes = pickle.dumps(stats_dict[fname]) | ||
val = base64.encodebytes(val_bytes).decode("ascii") | ||
stats_dict[fname] = np.array(val, dtype=str) | ||
return self._chain.append(value_dict, stats_dict) | ||
|
||
def __len__(self): | ||
return len(self._chain) | ||
|
||
def get_values(self, varname: str, burn=0, thin=1) -> np.ndarray: | ||
return self._chain.get_draws(varname, slice(burn, None, thin)) | ||
|
||
def _get_stats(self, fname: str, slc: slice) -> np.ndarray: | ||
"""Wraps `self._chain.get_stats` but unpickles automatically.""" | ||
values = self._chain.get_stats(fname, slc) | ||
# Unpickle object stats | ||
if fname in self._statsbj.object_stats: | ||
objs = [] | ||
for v in values: | ||
enc = str(v).encode("ascii") | ||
str_ = base64.decodebytes(enc) | ||
obj = pickle.loads(str_) | ||
objs.append(obj) | ||
return np.array(objs, dtype=object) | ||
return values | ||
|
||
def get_sampler_stats( | ||
self, stat_name: str, sampler_idx: Optional[int] = None, burn=0, thin=1 | ||
) -> np.ndarray: | ||
slc = slice(burn, None, thin) | ||
# When there's just one sampler, default to remove the sampler dimension | ||
if sampler_idx is None and self._statsbj.n_samplers == 1: | ||
sampler_idx = 0 | ||
# Fetching for a specific sampler is easy | ||
if sampler_idx is not None: | ||
return self._get_stats(flat_statname(sampler_idx, stat_name), slc) | ||
# To fetch for all samplers, we must collect the arrays one by one. | ||
stats_dict = { | ||
stat.name: self._get_stats(stat.name, slc) | ||
for stat in self._chain.rmeta.sample_stats | ||
if stat_name in stat.name | ||
} | ||
if not stats_dict: | ||
raise KeyError(f"No stat '{stat_name}' was recorded.") | ||
stats_list = self._statsbj.rmap(stats_dict) | ||
stats_arrays = [] | ||
is_ragged = False | ||
for sd in stats_list: | ||
if not sd: | ||
is_ragged = True | ||
continue | ||
else: | ||
stats_arrays.append(tuple(sd.values())[0]) | ||
|
||
if is_ragged: | ||
_log.debug("Stat '%s' was not recorded by all samplers.", stat_name) | ||
if len(stats_arrays) == 1: | ||
return stats_arrays[0] | ||
return np.array(stats_arrays).T | ||
|
||
def _slice(self, idx: slice) -> "IBaseTrace": | ||
# Get the integer indices | ||
start, stop, step = idx.indices(len(self)) | ||
indices = np.arange(start, stop, step) | ||
|
||
# Create a NumPyChain for the sliced data | ||
nchain = mcb.backends.numpy.NumPyChain( | ||
self._chain.cmeta, self._chain.rmeta, preallocate=len(indices) | ||
) | ||
|
||
# Copy at selected indices and append them to the new chain. | ||
# This may be slow, but NumPyChain currently don't have a batch-insert or slice API. | ||
vnames = [v.name for v in nchain.variables.values()] | ||
snames = [s.name for s in nchain.sample_stats.values()] | ||
for i in indices: | ||
draw = self._chain.get_draws_at(i, var_names=vnames) | ||
stats = self._chain.get_stats_at(i, stat_names=snames) | ||
nchain.append(draw, stats) | ||
return ChainRecordAdapter(nchain, self._point_fn, self._statsbj) | ||
|
||
def point(self, idx: int) -> Dict[str, np.ndarray]: | ||
return self._chain.get_draws_at(idx, [v.name for v in self._chain.variables.values()]) | ||
|
||
|
||
def make_runmeta_and_point_fn( | ||
*, | ||
initial_point: Mapping[str, np.ndarray], | ||
step: Union[CompoundStep, BlockedStep], | ||
model: Model, | ||
) -> Tuple[mcb.RunMeta, PointFunc]: | ||
variables, point_fn = get_variables_and_point_fn(model, initial_point) | ||
|
||
sample_stats = [ | ||
mcb.Variable("tune", "bool"), | ||
] | ||
|
||
# In PyMC the sampler stats are grouped by the sampler. | ||
steps = flatten_steps(step) | ||
for s, sm in enumerate(steps): | ||
for statname, (dtype, shape) in sm.stats_dtypes_shapes.items(): | ||
sname = flat_statname(s, statname) | ||
sshape = [ | ||
# PyMC uses None to indicate dynamic dims, MCB uses -1 | ||
(-1 if s is None else s) | ||
for s in (shape or []) | ||
] | ||
svar = mcb.Variable( | ||
name=sname, | ||
dtype=np.dtype(dtype).name, | ||
shape=sshape, | ||
undefined_ndim=shape is None, | ||
) | ||
sample_stats.append(svar) | ||
|
||
coordinates = [ | ||
mcb.Coordinate(dname, mcb.npproto.utils.ndarray_from_numpy(np.array(cvals))) | ||
for dname, cvals in model.coords.items() | ||
if cvals is not None | ||
] | ||
meta = mcb.RunMeta( | ||
rid=hagelkorn.random(), | ||
variables=variables, | ||
coordinates=coordinates, | ||
sample_stats=sample_stats, | ||
data=find_data(model), | ||
) | ||
return meta, point_fn | ||
|
||
|
||
def init_chain_adapters( | ||
*, | ||
backend: mcb.Backend, | ||
chains: int, | ||
initial_point: Mapping[str, np.ndarray], | ||
step: Union[CompoundStep, BlockedStep], | ||
model: Model, | ||
) -> Tuple[mcb.Run, List[ChainRecordAdapter]]: | ||
"""Create an McBackend metadata description for the MCMC run. | ||
|
||
Parameters | ||
---------- | ||
backend | ||
An McBackend `Backend` instance. | ||
chains | ||
Number of chains to initialize. | ||
initial_point | ||
Dictionary mapping value variable names to initial values. | ||
step : CompoundStep or BlockedStep | ||
The step method that iterates the MCMC. | ||
model : pm.Model | ||
The current PyMC model. | ||
|
||
Returns | ||
------- | ||
adapters | ||
Chain recording adapters that wrap McBackend Chains in the PyMC IBaseTrace interface. | ||
""" | ||
meta, point_fn = make_runmeta_and_point_fn(initial_point=initial_point, step=step, model=model) | ||
run = backend.init_run(meta) | ||
statsbj = StatsBijection(step.stats_dtypes) | ||
adapters = [ | ||
ChainRecordAdapter( | ||
chain=run.init_chain(chain_number=chain_number), | ||
point_fn=point_fn, | ||
stats_bijection=statsbj, | ||
) | ||
for chain_number in range(chains) | ||
] | ||
return run, adapters |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.