This package helps to reduce the amount of boilerplate code when creating Airflow DAGs from Python callables.
Project description
pytensor-federated
This package implements federated computing with PyTensor.
Using pytensor-federated
, differentiable cost functions can be computed on federated nodes.
Inputs and outputs are transmitted in binary via a bidirectional gRPC stream.
A client side LogpGradOp
is provided to conveniently embed federated compute operations in PyTensor graphs such as a PyMC model.
The example code implements a simple Bayesian linear regression to data that is "private" to the federated compute process.
Run each command in its own terminal:
python demo_node.py
python demo_model.py
Architecture
pytensor-federated
is designed to be a very generalizable framework for federated computing with gRPC, but it comes with implementations for PyTensor, and specifically for use cases of Bayesian inference.
This is reflected in the actual implementation, where the most basic gRPC service implementation -- the ArraysToArraysService
-- is wrapped by a few implementation flavors, specifically for common use cases in Bayesian inference.
At the core, everything is built around an ArraysToArrays
gRPC service, which takes any number of (NumPy) arrays as parameters, and returns any number of (NumPy) arrays as outputs.
The arrays can have arbitrary dtype
or shape
, as long as the buffer interface is supported (meaning dtype=object
doesn't work, but datetime
dtypes are ok).
This ArraysToArraysService
can be used to wrap arbitrary model functions, thereby enabling to run model simulations and MCMC/optimization on different machines.
The protobuf files that specify the data types and gRPC interface can be compiled to other programming languages, such that the model implementation could be C++, while MCMC/optimization run in Python.
For the Bayesian inference or optimization use case, it helps to first understand the inputs and outputs of the undelying computation graph. For example, parameter estimation with a differential equation model requires...
observations
to which the model should be fittedtimepoints
at which there were observations- parameters (including initial states)
theta
, some of which are to be estimated
From timepoints
and parameters theta
, the model
predicts trajectories
.
Together with observations
, these predictions are fed into some kind of likelihood function, which produces a scalar log-likelihood log-likelihood
as the output.
Different sub-graphs of this example could be wrapped by an ArraysToArraysService
:
[theta,] -> [log-likelihood,]
[timepoints, theta] -> [trajectories,]
[timepoints, observations, theta] -> [log-likelihood,]
If the entire model is differentiable, one can even return gradients.
For example, with a linear model: [slope, intercept] -> [LL, dLL_dslope, dLL_dintercept]
.
The role of PyTensor here is purely technical:
PyTensor is a graph computation framework that implements auto-differentiation.
Wrapping the ArraysToArraysServiceClient
in PyTensor Op
s simply makes it easier to build more sophisticated compute graphs.
PyTensor is also the computatation backend for PyMC, which is the most popular framework for Bayesian inference in Python.
Installation & Contributing
conda env create -f environment.yml
Additional dependencies are needed to compile the protobufs:
conda install -c conda-forge protobuf
pip install --pre betterproto[compiler]
python protobufs/generate.py
Set up pre-commit
for automated code style enforcement:
pip install pre-commit
pre-commit install
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytensor_federated-1.0.0.tar.gz
.
File metadata
- Download URL: pytensor_federated-1.0.0.tar.gz
- Upload date:
- Size: 35.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6374d44ea160852ce2589751376ae7697efee6e9ff65dc7dc4eccce19fb2c01e |
|
MD5 | 55b481f1bc7fa481c8b41eeddc6e58a5 |
|
BLAKE2b-256 | d35776a9a84dbfc236363671115de2deeb70a1e159bbfc8d64420a88292f719c |
File details
Details for the file pytensor_federated-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: pytensor_federated-1.0.0-py3-none-any.whl
- Upload date:
- Size: 38.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f53d1f81d8c1f4c2c5d50f10bb797a262794bdd56715e884b72876ba85122afd |
|
MD5 | ef7ca8b1a1f0904684520f22c5f5b79f |
|
BLAKE2b-256 | 821edbc489281058a126d03d7ad968ad1e48af79da80d89ee1991ef3d2f53d38 |