Declarative, parametric modelling in JAX
Project description
Parax is a parametric modelling library built on top of JAX and Equinox.
At its core, the library provides a Parameter class which inherits from eqx.Module and wraps a JAX array. A parameter can be marked as fixed for training, as well as assigned arbitrary metadata.
However, the library also provides additional helpers, including parax.partition, parax.field, parax.Module and parax.Operator. Parameter and Module provide an experience similar to PyTorch's torch.nn.Parameter, but in a more Equinox/JAX-friendly style. Operator caters for composable, parametric operations over arbitrary arguments, allowing for easy PyTree feature extraction.
| Parax | |
|---|---|
| Author | Gary Allen |
| Homepage | github.com/parax/parax |
| Docs | gvcallen.github.io/parax |
Features
- Easy parameter fixing: Parameters can be marked as
fixedand the resultant modules partitioned usingparax.partition. - Encapsulated constraints and scaling: Optional scaling and transformations are abstracted away by applying them when the parameter object is cast to a JAX array. This can be used, for example, to enforce positivity or arbitrary constraints during optimization.
- Parameter transforms: Arbitrary transforms can be applied to parameters using
myparam.transformed(bij). This applies a transform to both the parameter and its underlying distribution (if any). - Arbitrary metadata support: While Parax natively caters for common metadata such as distributions, bijectors, scaling, bounds and a name, arbitrary metadata can also be attached for more complex modelling purposes (for example, in the scientific domain it is common to want to attach units to a parameter).
- Extended Equinox module: Parax provides
parax.Module, which extendseqx.Moduleto allow for easy inspection, updating, fixing, freeing, or mapping of parameters and their metadata deep within complex models using simple string paths and bulkwith_*methods. For example,parax.Module.named_params()returns a dictionary of parameters with names based on string paths. - Composable PyTree operations: Parax provides
parax.Operator, which caters for composable, parametric operations over arbitrary arguments. This can be very useful in manipulating domain-specificparax.Moduleobjects in a parameter-aware manner. - (experimental) Model saving and loading. By employing methods to serialize
distreqxdistributions and bijections, Parax provides (experimental) support to directly save (pickle) models usingparax.loadandparax.save, as long as they align to certain rules.
Installation
Parax can be installed using pip directly:
pip install parax
Overview
The Parameter class is designed to be used as if it was a JAX array. The raw value inside a parameter is therefore stored in "latent" space i.e. untransformed and unscaled. However, parameters eagerly cast to JAX arrays, at which point the bijection and scaling is applied. This completely abstracts the underlying latent value (to be used in optimization) from the user, bypassing the need to explicitly apply the transform.
To make optimization easy, Parax also comes with a built-in parax.partition function, which partitions a model into trainable parameters. If a model is built purely using Parameter's, this removes the need for any conditional logical that would usually be done manually during eqx.partition.
Further, Parax also provides an extended version of Equinox's Module in parax.Module. This allows for parameter-aware module inspection and manipulation. For example, parameters can easily be flattened, updated using a single string assigned using the hierarchy, and mapped in batches.
The library is mainly intended for use in domain-specific scientific modeling, but can easily be applied to broader applications.
Example 1: Enforcing bounds
The following example creates a parax.Parameter that is strictly bounded between 0.0 and 1.0, and whose physical value follows a normal distribution.
import parax as prx
from distreqx.bijectors import Sigmoid
normal_param = prx.Normal(0.5, 0.1, bijector=Sigmoid())
print(normal_param.latent_value) # prints 0.0
print(normal_param.value) # prints 0.5
Example 2: Optimizing a model
In this example, we define a simple quadratic model ($y = ax^2 + bx + c$). We fix the y-intercept, leave the other coefficients free, and use JAX and optimistix to fit the model to some noisy data.
import jax
import jax.numpy as jnp
import equinox as eqx
import optimistix as optx
import parax as prx
from parax.parameters import Free, Fixed
# 1. Define the Parametric Model
class Quadratic(eqx.Module):
"""A generic quadratic curve: y = a*x^2 + b*x + c"""
a: prx.Parameter
b: prx.Parameter
c: prx.Parameter
def __call__(self, x: jnp.ndarray) -> jnp.ndarray:
return self.a * (x ** 2) + self.b * x + self.c
# We pass in free/fixed parameters without metadata using factories.
# Note that `parax.Module` would allow us to simply pass `a=1.5` for free parameters.
model = Quadratic(a=Free(1.5), b=Free(0.5), c=Fixed(10.0))
# 2. Generate some dummy "ground truth" data with noise
x_true = jnp.linspace(-5.0, 5.0, 100)
y_true = 3.0 * (x_true ** 2) - 2.0 * x_true + 10.0 # True a=3.0, b=-2.0
y_true = y_true + jax.random.normal(jax.random.key(0), x_true.shape)
# 3. Partition the model into free and fixed parameters
params, static = prx.partition(model)
# 4. Define the loss Function
def loss_fn(params, args=None):
model = eqx.combine(params, static)
y_pred = model(x_true)
return jnp.mean((y_pred - y_true)**2)
# 5. Run the BFGS optimizer
solver = optx.LBFGS(rtol=1e-6, atol=1e-6)
solution = optx.minimise(
fn=loss_fn,
y0=params,
solver=solver,
args=(x_true, y_true, static),
)
# 6. Recombine to get the final fitted model
fitted_model = eqx.combine(solution.value, static)
print(f"Fitted 'a': {jnp.array(fitted_model.a):.8f} (Expected ~3.0)")
print(f"Fitted 'b': {jnp.array(fitted_model.b):.8f} (Expected ~-2.0)")
print(f"Fixed 'c': {jnp.array(fitted_model.c):.8f} (Remained 10.0)")
print(f'Final loss: {loss_fn(fitted_model)}')
print(solution.result)
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 parax-0.4.3.tar.gz.
File metadata
- Download URL: parax-0.4.3.tar.gz
- Upload date:
- Size: 3.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b88e7c849a49efaf2bc2e94198a611723088b156b8fbf1ef59abce9a8fb0bba2
|
|
| MD5 |
370e70a9b4b6241b9a0fec02cfbb3119
|
|
| BLAKE2b-256 |
d9eebe4385d0ece1e708cb92d94609fe4e51773ec36fce2c7337b02587758d27
|
Provenance
The following attestation bundles were made for parax-0.4.3.tar.gz:
Publisher:
publish.yml on gvcallen/parax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
parax-0.4.3.tar.gz -
Subject digest:
b88e7c849a49efaf2bc2e94198a611723088b156b8fbf1ef59abce9a8fb0bba2 - Sigstore transparency entry: 1205781393
- Sigstore integration time:
-
Permalink:
gvcallen/parax@ea38843fc99d0eb2b244f209492dec7061bf7c54 -
Branch / Tag:
refs/tags/v0.4.3 - Owner: https://github.com/gvcallen
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ea38843fc99d0eb2b244f209492dec7061bf7c54 -
Trigger Event:
push
-
Statement type:
File details
Details for the file parax-0.4.3-py3-none-any.whl.
File metadata
- Download URL: parax-0.4.3-py3-none-any.whl
- Upload date:
- Size: 48.0 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 |
8af149afde1435ddb41279e9f9441e58cb05162d09f2c8e665f1c8727b56c56b
|
|
| MD5 |
bc15cd93d75fd9e7e34b2daaf2eaec18
|
|
| BLAKE2b-256 |
a300267f4b261f32c7a923837566bbc114123dd193f62604fe79901ce09034bd
|
Provenance
The following attestation bundles were made for parax-0.4.3-py3-none-any.whl:
Publisher:
publish.yml on gvcallen/parax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
parax-0.4.3-py3-none-any.whl -
Subject digest:
8af149afde1435ddb41279e9f9441e58cb05162d09f2c8e665f1c8727b56c56b - Sigstore transparency entry: 1205781402
- Sigstore integration time:
-
Permalink:
gvcallen/parax@ea38843fc99d0eb2b244f209492dec7061bf7c54 -
Branch / Tag:
refs/tags/v0.4.3 - Owner: https://github.com/gvcallen
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ea38843fc99d0eb2b244f209492dec7061bf7c54 -
Trigger Event:
push
-
Statement type: