Opifex
A unified scientific machine learning framework built on JAX/Flax NNX
From Latin "opifex" - worker, skilled maker
Research preview. Opifex is under rapid iteration and the API will change while we iterate toward v1.0. What that means concretely:
Area Status Impact API 🔄 Unstable Breaking changes are expected. Public interfaces may change without deprecation warnings. Pin to specific commits if stability is required. Tests 🔄 In Flux Test suite is being expanded. Some tests may fail or be skipped. Coverage metrics are improving but not yet full. Documentation 🔄 Evolving Docs may not reflect current implementation. Code examples might be outdated. Refer to source code and tests for accurate usage. Pin a version if you need stability, and do not put it in production yet. For research and experimentation it is ready to use today, with the understanding that APIs will evolve.
This is public this early on purpose. Issues, questions and pull requests genuinely steer what gets built next, and a star tells us which layer to push on.
A JAX-native platform for scientific machine learning, built for unified excellence, probabilistic-first design, and high performance.
🎯 Core Vision
- 🔬 Unified Excellence: Single platform supporting all major Opifex paradigms with mathematical clarity
- 📊 Probabilistic-First: Built-in uncertainty quantification treating all computation as Bayesian inference
- ⚡ High Performance: Optimized for speed with JAX transformations and GPU acceleration
- 🏗️ Production-Oriented: Designed with benchmarking and deployment tools for future production use
- 🤝 Community-Driven: Open patterns for education, research collaboration, and industrial adoption
✨ Key Features
- Neural Operators: FNO, DeepONet, PINO, TFNO, UFNO, SFNO, LocalFNO, AM-FNO, MS-FNO, UNO, FourierDeepONet, AdaptiveDeepONet, MultiPhysicsDeepONet, GINO, MGNO, UQNO, LNO, WNO, GNO, OperatorNet (20 registered architectures;
opifex.neural.operators.OPERATOR_REGISTRY) - Physics-Informed Neural Networks: Standard PINNs plus domain decomposition (FBPINN, XPINN, CPINN)
- Atomistic Potentials: E(3)-equivariant SchNet, PaiNN, and NequIP backbones (with MACE-style higher body-order via symmetric contraction), energy/forces/stress heads, and an ASE calculator
- Quantum Chemistry: Differentiable Kohn-Sham DFT, neural exchange-correlation functionals, variational Monte Carlo, and equivariant Hamiltonian prediction (QH9)
- Equivariant Core: Native E(3) algebra - irreps, Clebsch-Gordan, Wigner-D, and spherical harmonics
- Uncertainty Quantification: Conformal prediction, calibration, Gaussian processes, Bayesian quadrature, probabilistic numerics, simulation-based inference, and a broad adapter suite (ensembles, last-layer, SNGP, evidential)
- Equation Discovery: SINDy, Ensemble SINDy, Weak SINDy, and Bayesian SINDy
- Field Operations: JAX-native differential operators, advection, and pressure projection on structured grids
- Data Loading: JAX-native pipelines for PDEBench tensors and VTK unstructured meshes on the datarax Source/Pipeline contract
- Advanced Training: NTK analysis, GradNorm loss balancing, adaptive sampling (RAR-D)
- Optimization: Learn-to-optimize, meta-optimization (MAML/Reptile), and second-order methods
- Unified SciML Solvers: Standardized protocol for PINNs, Neural Operators, and Hybrid solvers
- 59 Working Examples: Full coverage from getting started to advanced research workflows
For detailed feature documentation, see Features.
🚀 Quick Start
Prerequisites
- Python 3.12+
- CUDA-compatible GPU (optional but recommended)
Installation
opifex is on PyPI:
uv add opifex # or: pip install opifex
uv add "opifex[mlflow]" # with the MLflow experiment backend
To work on opifex itself, clone the repository and use the managed environment:
# Clone the repository
git clone https://github.com/avitai/opifex.git
cd opifex
# Set up development environment
./setup.sh
# Activate environment
source ./activate.sh
# Run tests to verify installation
uv run pytest tests/ -v
For detailed installation instructions, see Installation Guide.
📚 Basic Usage
Fourier Neural Operator (FNO)
import jax
from flax import nnx
from opifex.neural.operators.fno import FourierNeuralOperator
# Create FNO for learning PDE solution operators
rngs = nnx.Rngs(jax.random.PRNGKey(0))
fno = FourierNeuralOperator(
in_channels=1,
out_channels=1,
hidden_channels=32,
modes=12,
num_layers=4,
rngs=rngs,
)
# Input: (batch, channels, *spatial_dims)
x = jax.random.normal(jax.random.PRNGKey(1), (4, 1, 64, 64))
y = fno(x)
print(f"FNO: {x.shape} -> {y.shape}") # (4, 1, 64, 64) -> (4, 1, 64, 64)
Deep Operator Network (DeepONet)
import jax
from flax import nnx
from opifex.neural.operators.deeponet import DeepONet
# Create DeepONet for function-to-function mapping
rngs = nnx.Rngs(jax.random.PRNGKey(0))
deeponet = DeepONet(
branch_sizes=[100, 64, 64, 32], # 100 sensor locations
trunk_sizes=[2, 64, 64, 32], # 2D output coordinates
activation="gelu",
rngs=rngs,
)
# Branch input: function values at sensors (batch, num_sensors)
# Trunk input: evaluation coordinates (batch, n_locations, coord_dim)
branch_input = jax.random.normal(jax.random.PRNGKey(1), (8, 100))
trunk_input = jax.random.uniform(jax.random.PRNGKey(2), (8, 50, 2)) # 50 eval points
output = deeponet(branch_input, trunk_input)
print(f"DeepONet output: {output.shape}") # (8, 50)
Equation Discovery (SINDy)
import jax.numpy as jnp
from opifex.discovery.sindy import SINDy, SINDyConfig
# Generate Lorenz trajectory (σ=10, ρ=28, β=8/3) with RK4
def lorenz(state, sigma=10.0, rho=28.0, beta=8.0 / 3.0):
x, y, z = state
return jnp.array([sigma * (y - x), x * (rho - z) - y, x * y - beta * z])
dt, state = 0.001, jnp.array([1.0, 1.0, 1.0])
trajectory, derivatives = [state], [lorenz(state)]
for _ in range(10000):
k1 = lorenz(state)
k2 = lorenz(state + 0.5 * dt * k1)
k3 = lorenz(state + 0.5 * dt * k2)
k4 = lorenz(state + dt * k3)
state = state + (dt / 6.0) * (k1 + 2 * k2 + 2 * k3 + k4)
trajectory.append(state)
derivatives.append(lorenz(state))
# Discover governing equations from data
model = SINDy(SINDyConfig(polynomial_degree=2, threshold=0.3))
model.fit(jnp.stack(trajectory), jnp.stack(derivatives))
for eq in model.equations(["x", "y", "z"]):
print(eq)
# dx/dt = -9.999 x + 10.000 y (true: -10 x + 10 y)
# dy/dt = 28.000 x + -1.000 y + -1.000 x z (true: 28 x - y - x z)
# dz/dt = -2.667 z + 1.000 x y (true: -8/3 z + x y)
For full examples and tutorials, see the Examples directory and Documentation.
🔧 Development
# Run tests
uv run pytest tests/ -v
# Code quality checks
uv run pre-commit run --all-files
For detailed development guidelines, see Development Guide.
📖 Documentation
- Getting Started: Installation and basic usage
- Features: Complete feature overview
- Architecture: Framework design and structure
- API Reference: Complete API documentation
- Examples: Working examples and tutorials
- Development: Contributing and development setup
🤝 Contributing
We welcome contributions! Please see our Contributing Guide for details.
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
Ready to get started? Check out our Quick Start Guide or explore the Examples directory!
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 opifex-0.2.2.tar.gz.
File metadata
- Download URL: opifex-0.2.2.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d070e911d9c0497c13fb186e73f81168905bc01e06360557e261c51cbab2bd5a
|
|
| MD5 |
06c9b406264ff333460541bd5b602f32
|
|
| BLAKE2b-256 |
281707e85c3865fe593f2a6286fa38a09fa168a6b3d4d5f495c4acc835be2eae
|
Provenance
The following attestation bundles were made for opifex-0.2.2.tar.gz:
Publisher:
publish.yml on avitai/opifex
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
opifex-0.2.2.tar.gz -
Subject digest:
d070e911d9c0497c13fb186e73f81168905bc01e06360557e261c51cbab2bd5a - Sigstore transparency entry: 2772304353
- Sigstore integration time:
-
Permalink:
avitai/opifex@ebf60ba29c96ff876856dc3a3c0f8d5d5a34affe -
Branch / Tag:
refs/tags/v0.2.2 - Owner: https://github.com/avitai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ebf60ba29c96ff876856dc3a3c0f8d5d5a34affe -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file opifex-0.2.2-py3-none-any.whl.
File metadata
- Download URL: opifex-0.2.2-py3-none-any.whl
- Upload date:
- Size: 1.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b071c03ec57e95fdb653a77c295686c73443d19980219f48cc7e00314cefccba
|
|
| MD5 |
b49523a0cee0f667e80c2c653a2ae1dd
|
|
| BLAKE2b-256 |
454812ea518e4308fc537adee88bd11281a88c709969fb96fe3acbfc0cc81f69
|
Provenance
The following attestation bundles were made for opifex-0.2.2-py3-none-any.whl:
Publisher:
publish.yml on avitai/opifex
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
opifex-0.2.2-py3-none-any.whl -
Subject digest:
b071c03ec57e95fdb653a77c295686c73443d19980219f48cc7e00314cefccba - Sigstore transparency entry: 2772304362
- Sigstore integration time:
-
Permalink:
avitai/opifex@ebf60ba29c96ff876856dc3a3c0f8d5d5a34affe -
Branch / Tag:
refs/tags/v0.2.2 - Owner: https://github.com/avitai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ebf60ba29c96ff876856dc3a3c0f8d5d5a34affe -
Trigger Event:
workflow_dispatch
-
Statement type: