Skip to content

Commit a0e36df

Browse files
committed
update docsting to reflect fixes
1 parent e1ef07d commit a0e36df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bayesflow/utils/optimal_transport/log_sinkhorn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def log_sinkhorn(x1, x2, seed: int = None, **kwargs):
2020
def log_sinkhorn_plan(x1, x2, regularization: float = 1.0, rtol=1e-5, atol=1e-8, max_steps=None):
2121
"""
2222
Log-stabilized version of :py:func:`~bayesflow.utils.optimal_transport.sinkhorn.sinkhorn_plan`.
23-
Significantly slower than the unstabilized version, so use only when you need numerical stability.
23+
Slightly slower than the unstabilized version, so use primarily when you need numerical stability.
2424
"""
2525
cost = euclidean(x1, x2)
2626

0 commit comments

Comments
 (0)