Immutable pytree modules classes with easy manipulation and serialization
Project description
FlareJax
Simple pytree module classes for Jax, strongly inspired by Equinox
- Referential transparency via strict immutability
- Safe serialization including hyperparameters
- Bound methods and function transformations are also modules
- Auxillary information in key paths for filtered transformations
Quick Examples
Modules work similar to dataclasses, but with the added benefit of being pytrees. Making them compatible with all Jax function transformations.
import flarejax as fj
class Linear(fj.Module):
# The __init__ method is automatically generated
w: jax.Array
b: jax.Array
# additional intialization methods via classmethods
@classmethod
def init(cls, key, dim_in, dim):
w = jax.random.normal(key, (dim, dim_in)) * 0.02
b = jax.numpy.zeros((dim,))
return cls(w=w, b=b)
def __call__(self, x):
return self.w @ x + self.b
key = jax.random.PRNGKey(42)
key1, key2 = jax.random.split(key)
model = fj.Sequential(
(
Linear.init(key1, 3, 2),
Linear.init(key2, 2, 5),
)
)
The model can be serialized and deserialized using fj.save
and fj.load
.
fj.save("model.npz", model)
model = fj.load("model.npz")
Flarejax includes wrappers of the Jax function transformations, which return callable modules.
model = fj.VMap(model)
model = fj.Jit(model)
Installation
Memmpy can be installed directly from PyPI using pip
. It requires Python 3.10+ and Jax 0.4.26+.
pip install flarejax
Design
Flarejax modules sacrifice some flexibility for the sake of a unified interface and safety. Flarejax code should alway be easy to reason about and should not contain any footguns from using python magic.
- Everything is immutable and
- module fields can be either jax arrays, other modules or json-like data.
This makes it harder to use other jax libraries in flarejax modules. It is recommended to wrap the needed functionality in a module. Most jax libraries should be compatible with flarejax modules, since they are simply callable pytrees.
Roadmap
- Filtered grad transformation based on key paths
- Pretty printing for modules
- Rule to infer static arguments in jitted functions, possibly everything except JAX arrays
See also
- The beautiful Equinox library
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 flarejax-0.3.14.tar.gz
.
File metadata
- Download URL: flarejax-0.3.14.tar.gz
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90db35266b8ae70a9790a4a209184f9b90bf28fc2312075097f7764ac0ecb0c7 |
|
MD5 | 054d7928f5024e383dc8c87f3c8722bc |
|
BLAKE2b-256 | ea5070512c1d53813eedf30037576723bf5a49e5c5504a5d1bd85c64598e2e41 |
File details
Details for the file flarejax-0.3.14-py3-none-any.whl
.
File metadata
- Download URL: flarejax-0.3.14-py3-none-any.whl
- Upload date:
- Size: 13.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 038cbef26854e1702c1e03f4662b8f8c1235a2122e7710fe631e03bf95d3f010 |
|
MD5 | f1c9c51e3044a1b591562028476ea033 |
|
BLAKE2b-256 | 2c709216a649c84bdb89c3dc28eb0f3794133edc31097a5844e501aa1509f82d |