Source code for ott.math._velocity_from_brenier_potential
# Copyright OTT-JAX
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import functools
from typing import Any, Callable
import jax
import jax.numpy as jnp
from ott import math
__all__ = ["velocity_from_brenier_potential"]
[docs]
def velocity_from_brenier_potential(
potential: Callable[[jnp.ndarray], jnp.ndarray],
**kwargs: Any,
) -> Callable[[jnp.ndarray, jnp.ndarray], jnp.ndarray]:
"""Get optimal time-dependent velocity field from :term:`Brenier potential`.
The solution is computed numerically using a :term:`Legendre transform`.
Args:
potential: A convex potential of shape ``[d,]``.
kwargs: Keyword arguments for :func:`~ott.math.legendre`.
Returns:
A time-parameterized velocity field ``vel(t, x)`` that expects time array
of shape ``[n,]`` and inputs of shape ``[n, d]``.
"""
@functools.partial(jax.vmap, in_axes=[0, 0])
def vel(t: jnp.array, z: jnp.array) -> jnp.array:
def pot_t(x: jnp.ndarray) -> jnp.ndarray:
return 0.5 * (1 - t) * jnp.sum(x ** 2) + t * potential(x)
grad_pot_t_star = jax.grad(math.legendre(pot_t, **kwargs))
x = jax.lax.cond(t == 0.0, lambda z: z, grad_pot_t_star, z)
return jax.grad(potential)(x) - x
return vel