Important
This library is very much a work in progress, as is the documentation. Naturally, the contents of this library is subject to change depending on choice of research avenue. At the moment, there exists a solid basis on which to build, but the API may change to improve accessiblity for new users. If there is anything you would like to see in the library, or anything you think that needs to change -- please do let me know.
Riemax is a JAX library for Riemannian geometry, providing the ability to define induced metrics and operate on manifolds directly. This includes functionality, such as:
- Computing geometric quantities on manifolds.
- Defining operators on manifolds.
- Tools for geometric statistics.
pip install git+https://github.com/danielkelshaw/riemax
Requires Python 3.12+ and JAX 0.4.13+.
Manifolds can be defined by a function transformation,
import riemax as rx
fn_transformation = rx.fn_transformations.fn_peaks
manifold = rx.Manifold.from_fn_transformation(fn_transformation)
and can be used to compute properties on the manifold:
import jax
import jax.numpy as jnp
p = jnp.array([0.0, 0.0])
metric = manifold.metric_tensor(p)
christoffel = manifold.sk_christoffel(p)
ricci_scalar = manifold.ricci_scalar(p)
We can also define operators. Given a function
from riemax.manifold import M, Rn
def f(p: M[jax.Array]) -> Rn[jax.Array]:
return jnp.einsum('i -> ', p ** 2)
fn_grad = manifold.grad(f)
# we can define the laplacian explicitly:
fn_laplacian = manifold.div(fn_grad)
# ... or from manifold:
fn_laplacian = manifold.laplace_beltrami(f)
We can exploit the ability to compute geometric quantities to compute the exponential map:
dt = 1e-3
n_steps = int(1.0 // dt)
fn_exp_map = rx.manifold.maps.exponential_map_factory(
integrator=rx.numerical.integrators.odeint,
dt=dt,
metric=manifold.metric_tensor,
n_steps=n_steps
)
p_in_tm = rx.manifold.TangentSpace(p, jnp.array([1.0, 1.0]))
q_in_tm, trajectory = fn_exp_map(p_in_tm)
The examples above show just a fraction of what is possible with Riemax. If this quick start has piqued your interest, please feel free to take a look at the examples to get a better feeling for what is possible with this library.
If you found this library to be useful in academic work, then please cite:
@misc{kelshaw2023riemax
title = {{Riemax}: {R}iemannian geometry in {JAX} via automatic differentiation}
author = {Daniel Kelshaw}
year = {2023},
url = {https://github.com/danielkelshaw/riemax}
}