A lightweight JAX interpreter for models.
Project description
JAX Purify
A simple Jaxpr interpreter which allows you to define models like this:
@purify
def model():
x = param(3)
return jnp.sin(x)
params = model.normal(rng)
model(params)
Parameters are only mentioned once, right next to where they are used. This avoids initialization methods and object-oriented programming while retaining automatic parameter management.
Other notable features:
fixedarrays for data that changes between calls but should not be be differentiatedintermediateoutputs for extracting internal values without restructuring the modelravelkeyword for accepting parameters as a single 1d array
The idea is basically the same as Haiku but without the module abstraction and adding the features above. The implementation is also different and allows arbitrary JAX transformations inside your model, which would cause side-effect issues in Haiku.
I wrote this tool to make it easier to read and write probabilistic models in astrophysics after getting frustrated using neural network libraries for the task. We often work in unit normal "whitened" parameter space, our model graphs are not trees, new custom components frequently need to be made, intermediate outputs are just as important as predicted data, and fixed arrays abound. These characteristics determined the design.
Installation
To install, use pip. The only dependency is jax.
python -m pip install jaxpurify
An Instructive Example
Suppose we want to use a Gaussian process to model a continuous field and read it out at several measurement locations. This example illustrates all of the core features of jaxpurify with the exception of parameter raveling. A complete inference demonstration is provided in examples/gaussian_process.py. See also examples/features.py for a more gradual introduction.
import jax.numpy as jnp
import jax.random as jr
import jaxpurify as jp
from jaxpurify import purify # aesthetics
def field(n, alpha):
# spectral index alpha is taken as an argument
k = jnp.fft.fftfreq(n).at[0].set(jnp.inf)
power = jnp.abs(k) ** alpha
# xi will always be raw white noise, so declare here
xi = jp.param(n, name="xi")
f = jnp.fft.fft(jnp.sqrt(power) * xi)
return f.real - f.imag
@purify
def model():
# fixed model grid is closed over
x = jnp.linspace(0, 5, 100)
# shortcut for a transformed white noise parameter
alpha = -jp.log_normal_variable("alpha", mean=3.0, sigma=0.1)
# return the underlying field as an intermediate
f = jp.intermediate(field(x.shape[0], alpha), name="f")
# fixed x_obs will be passed to model at evaluation time
x_obs = jp.fixed(3, name="x_obs")
# read out at observation points
return jnp.interp(x_obs, x, f)
# ways to get parameter dictionary
param_shapes = model.shapes()
zero_params = model.zeros()
params = model.normal(jr.key(137))
# forward pass and intermediates pass
x_obs = jnp.array([1, 2, 3])
result = model(params, x_obs=x_obs)
result_field = model.intermediates(params, x_obs=x_obs)["f"]
Q&A
How does it work?
JAX transformations like grad and vmap work by walking through the "Jaxpr" that describes the computation and interpreting each primitive in a new light. We use this same infrastructure for purify, inserting parameters into the computational graph where needed during evaluation. Under the hood, param, fixed, and intermediate are identity primitives which exist only to trigger special handling. If the model is not purified, parameters and fixed values are just arrays of zeros. This tutorial is a great introduction to the interpreter system in JAX.
Is it compatible with arbitrary JAX transformations anywhere I like?
Yes! You should be able to apply arbitrary transformations both inside the model and to the resulting purified function. That being said, jaxpurify uses JAX internals which are not documented or promised to be stable, so if something breaks please open an issue.
What happens to Python control flow inside the model?
It works exactly like it does under jit. No problem unless the control flow depends on array values, in which case a tracer conversion error will be raised. By the way, the purified function can be automatically compiled with jit=True if desired.
How do you deal with duplicate parameter names when reusing a component?
There is no automatic way. For models which do not have a simple tree structure, what good names could even be assigned? One could append "_1", "_2", etc based on the order of application, but this can be confusing and subject to change in complex models. Instead, if you want named parameters in reusable components, just accept a name argument as shown in examples/neural_network.py.
Is this better than using callable PyTrees like Equinox?
It depends. I find initialization and other class boilerplate to be verbose and distracting, especially when compared to what is possible with jaxpurify. Also, fixed arrays in PyTree models must be excluded from derivatives via stop_gradient, Equinox-style filtering, or by manually passing them as arguments deep into the model, all of which I find unwieldy. On the other hand, if your model graph is a tree with all arrays learnable (read: neural network), it is sad to give up the convenience of a tree-like data structure which enables simple inspection and intermediate evaluation while avoiding the duplicate name issue mentioned above.
Why do I need to declare the shapes of fixed values in the model?
One could imagine determining shapes from whatever arrays are passed, eliminating the need to synchronize the model. But then fixed values would need to be passed to the initialization methods, each model call would need to re-trace the function, it would not be possible to harvest fixed value names, and the unpurified model would not have a well-defined call behavior. Instead, if you need to change any shapes in your model frequently, just make a factory function as shown in examples/neural_network.py.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jaxpurify-0.0.1.tar.gz.
File metadata
- Download URL: jaxpurify-0.0.1.tar.gz
- Upload date:
- Size: 174.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
549c83a5a56812f9ebbdeed54b61dd6d5afcd042f54c9e1ae235013652eb7425
|
|
| MD5 |
3c45a75d45065d6b89bd4b7a0f2329fc
|
|
| BLAKE2b-256 |
2918e5869b6b9815c534f6370c37c8af501be054784e3248112060dddd3bc2e0
|
Provenance
The following attestation bundles were made for jaxpurify-0.0.1.tar.gz:
Publisher:
publish.yml on dodgebc/jaxpurify
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jaxpurify-0.0.1.tar.gz -
Subject digest:
549c83a5a56812f9ebbdeed54b61dd6d5afcd042f54c9e1ae235013652eb7425 - Sigstore transparency entry: 1111147202
- Sigstore integration time:
-
Permalink:
dodgebc/jaxpurify@4c69caf5b552879f20be0b10c89f7f87d33e7dc8 -
Branch / Tag:
refs/tags/v0.0.1 - Owner: https://github.com/dodgebc
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4c69caf5b552879f20be0b10c89f7f87d33e7dc8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file jaxpurify-0.0.1-py3-none-any.whl.
File metadata
- Download URL: jaxpurify-0.0.1-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46404acac5dabfefd3a2601e913371ffe898c2c89b84833979724764bed36970
|
|
| MD5 |
ffc4fe3a6001a77fa1e9c461cd3a4583
|
|
| BLAKE2b-256 |
27d061aaa198ce0c9930f4ecbca5680848c9de73d2b2d5dbd1a1b4d173264d6b
|
Provenance
The following attestation bundles were made for jaxpurify-0.0.1-py3-none-any.whl:
Publisher:
publish.yml on dodgebc/jaxpurify
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jaxpurify-0.0.1-py3-none-any.whl -
Subject digest:
46404acac5dabfefd3a2601e913371ffe898c2c89b84833979724764bed36970 - Sigstore transparency entry: 1111147207
- Sigstore integration time:
-
Permalink:
dodgebc/jaxpurify@4c69caf5b552879f20be0b10c89f7f87d33e7dc8 -
Branch / Tag:
refs/tags/v0.0.1 - Owner: https://github.com/dodgebc
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4c69caf5b552879f20be0b10c89f7f87d33e7dc8 -
Trigger Event:
push
-
Statement type: