Dataclasses + JAX
Project description
jax_dataclasses
jax_dataclasses
provides a wrapper around dataclasses.dataclass
for use in
JAX, which enables automatic support for:
- Pytree registration. This allows dataclasses to be used at API boundaries in JAX. (necessary for function transformations, JIT, etc)
- Serialization via
flax.serialization
. - Static analysis with tools like
mypy
,jedi
,pyright
, etc. (including for constructors) - (Optional) Shape and data-type annotations, runtime checks.
Notably, jax_dataclasses
is designed to work seamlessly with tooling that
relies on static analysis. (mypy
, jedi
, etc)
Heavily influenced by some great existing work (the obvious one being
flax.struct.dataclass
); see Alternatives for comparisons.
Installation
pip install jax_dataclasses
Core interface
jax_dataclasses
is meant to provide a drop-in replacement for
dataclasses.dataclass
:
jax_dataclasses.pytree_dataclass
has the same interface asdataclasses.dataclass
, but also registers the target class as a pytree container.jax_dataclasses.static_field
has the same interface asdataclasses.field
, but will also mark the field as static. In a pytree node, static fields will be treated as part of the treedef instead of as a child of the node; all fields that are not explicitly marked static should contain arrays or child nodes.
We also provide several aliases:
jax_dataclasses.[field, asdict, astuples, is_dataclass, replace]
are all
identical to their counterparts in the standard dataclasses library.
Mutations
All dataclasses are automatically marked as frozen and thus immutable (even when
no frozen=
parameter is passed in). To make changes to nested structures
easier, we provide an interface that will (a) make a copy of a pytree and (b)
return a context in which any of that copy's contained dataclasses are
temporarily mutable:
from jax import numpy as jnp
import jax_dataclasses
@jax_dataclasses.pytree_dataclass
class Node:
child: jnp.ndarray
obj = Node(child=jnp.zeros(3))
with jax_dataclasses.copy_and_mutate(obj) as obj_updated:
# Make mutations to the dataclass. This is primarily useful for nested
# dataclasses.
#
# Also does input validation: if the treedef, leaf shapes, or dtypes of `obj`
# and `obj_updated` don't match, an AssertionError will be raised.
# This can be disabled with a `validate=False` argument.
obj_updated.child = jnp.ones(3)
print(obj)
print(obj_updated)
Shape and type annotations
As an optional feature, we introduce
jax_dataclasses.ArrayAnnotationMixin
to enable
automatic shape and data-type validation.
We can start by importing the Annotated
type:
# Python >=3.9
from typing import Annotated
# Backport
from typing_extensions import Annotated
We can then add shape annotations:
@jax_dataclasses.pytree_dataclass
class MnistStruct(jax_dataclasses.ArrayAnnotationMixin):
image: Annotated[
jnp.ndarray,
(28, 28),
]
label: Annotated[
jnp.ndarray,
(10,),
]
Or data-type annotations:
image: Annotated[
jnp.ndarray,
jnp.float32,
]
label: Annotated[
jnp.ndarray,
jnp.integer,
]
Or both (note that annotations are order-invariant):
image: Annotated[
jnp.ndarray,
(28, 28),
jnp.float32,
]
label: Annotated[
jnp.ndarray,
(10,),
jnp.integer,
]
Then, assuming we've constrained both the shape and data-type, we get array
validation on instantiation and access to a .get_batch_axes()
method for
grabbing any common prefixes in contained array shapes:
# OK
struct = MnistStruct(
image=onp.zeros((28, 28), dtype=onp.float32),
label=onp.zeros((10,), dtype=onp.uint8),
)
print(struct.get_batch_axes()) # Prints ()
# OK
struct = MnistStruct(
image=onp.zeros((32, 28, 28), dtype=onp.float32),
label=onp.zeros((32, 10), dtype=onp.uint8),
)
print(struct.get_batch_axes()) # Prints (32,)
# AssertionError on instantiation because of type mismatch
MnistStruct(
image=onp.zeros((28, 28), dtype=onp.float32),
label=onp.zeros((10,), dtype=onp.float32),
)
# AssertionError on instantiation because of shape mismatch
MnistStruct(
image=onp.zeros((28, 28), dtype=onp.float32),
label=onp.zeros((5,), dtype=onp.uint8),
)
# AssertionError on instantiation because of batch axis mismatch
struct = MnistStruct(
image=onp.zeros((64, 28, 28), dtype=onp.float32),
label=onp.zeros((32, 10), dtype=onp.uint8),
)
Alternatives
A few other solutions exist for automatically integrating dataclass-style
objects into pytree structures. Great ones include:
chex.dataclass
,
flax.struct
, and
tjax.dataclass
. These all influenced
this library.
The main differentiators of jax_dataclasses
are:
-
Static analysis support.
tjax
has a custom mypy plugin to enable type checking, but isn't supported by other tools.flax.struct
implements thedataclass_transform
spec proposed by pyright, but isn't supported by other tools. Because@jax_dataclasses.pytree_dataclass
has the same API as@dataclasses.dataclass
, it can include pytree registration behavior at runtime while being treated as the standard decorator during static analysis. This means that all static checkers, language servers, and autocomplete engines that support the standarddataclasses
library should work out of the box withjax_dataclasses
. -
Nested dataclasses. Making replacements/modifications in deeply nested dataclasses can be really frustrating. The three alternatives all introduce a
.replace(self, ...)
method to dataclasses that's a bit more convenient than the traditionaldataclasses.replace(obj, ...)
API for shallow changes, but still becomes really cumbersome to use when dataclasses are nested.jax_dataclasses.copy_and_mutate()
is introduced to address this. -
Static field support. Parameters that should not be traced in JAX should be marked as static. This is supported in
flax
,tjax
, andjax_dataclasses
, but notchex
. -
Serialization. When working with
flax
, being able to serialize dataclasses is really handy. This is supported inflax.struct
(naturally) andjax_dataclasses
, but notchex
ortjax
. -
Shape and type annotations. See above.
Misc
This code was originally written for and factored out of jaxfg, where Nick Heppert provided valuable feedback!
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 jax_dataclasses-1.1.0.tar.gz
.
File metadata
- Download URL: jax_dataclasses-1.1.0.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb341072cfd370559a15a937fc52bf2dab5de978c636dc8125141d5ab260d849 |
|
MD5 | b6761cdfb2d05d6b629d4108483a9e60 |
|
BLAKE2b-256 | 8faaedbd656666d3d4799db6d0d835ff1c5df2b46ecc94434f40c3067ac26800 |
File details
Details for the file jax_dataclasses-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: jax_dataclasses-1.1.0-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 124925eb3e0b90ec098038109987ed08674958b34db45852dc004643bf8d4726 |
|
MD5 | 3e3a33e623c3b5bf062795270046310d |
|
BLAKE2b-256 | 30e41b78b19f913e40de03c0556f7cdf9c641cd7a0b84d1e619553d2fbc0eb75 |