Source code for ott.solvers.linear._solve

# 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
#
#   http://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.
from typing import Any, Optional, Union

import jax.numpy as jnp

from ott.geometry import geometry
from ott.problems.linear import linear_problem
from ott.solvers.linear import sinkhorn, sinkhorn_lr

__all__ = ["solve"]


[docs] def solve( geom: geometry.Geometry, a: Optional[jnp.ndarray] = None, b: Optional[jnp.ndarray] = None, tau_a: float = 1.0, tau_b: float = 1.0, rank: int = -1, **kwargs: Any ) -> Union[sinkhorn.SinkhornOutput, sinkhorn_lr.LRSinkhornOutput]: """Solve linear regularized OT problem using Sinkhorn iterations. Args: geom: The ground geometry of the linear problem. a: The first marginal. If :obj:`None`, it will be uniform. b: The second marginal. If :obj:`None`, it will be uniform. tau_a: If :math:`< 1`, defines how much unbalanced the problem is on the first marginal. tau_b: If :math:`< 1`, defines how much unbalanced the problem is on the second marginal. rank: Rank constraint on the coupling to minimize the linear OT problem :cite:`scetbon:21`. If :math:`-1`, no rank constraint is used. kwargs: Keyword arguments for :class:`~ott.solvers.linear.sinkhorn.Sinkhorn` or :class:`~ott.solvers.linear.sinkhorn_lr.LRSinkhorn`, depending on the ``rank``. Returns: The Sinkhorn output. """ prob = linear_problem.LinearProblem(geom, a=a, b=b, tau_a=tau_a, tau_b=tau_b) if rank > 0: solver = sinkhorn_lr.LRSinkhorn(rank=rank, **kwargs) else: solver = sinkhorn.Sinkhorn(**kwargs) return solver(prob)