We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7efea81 commit 49d9b5cCopy full SHA for 49d9b5c
ot/unbalanced.py
@@ -326,7 +326,7 @@ def sinkhorn_knopp_unbalanced(a, b, M, reg, reg_m, numItermax=1000,
326
>>> a=[.5, .5]
327
>>> b=[.5, .5]
328
>>> M=[[0., 1.],[1., 0.]]
329
- >>> ot.unbalanced._sinkhorn_knopp_unbalanced(a, b, M, 1., 1.)
+ >>> ot.unbalanced.sinkhorn_knopp_unbalanced(a, b, M, 1., 1.)
330
array([[0.51122823, 0.18807035],
331
[0.18807035, 0.51122823]])
332
@@ -510,7 +510,7 @@ def sinkhorn_stabilized_unbalanced(a, b, M, reg, reg_m, tau=1e5, numItermax=1000
510
511
512
513
- >>> ot.unbalanced._sinkhorn_stabilized_unbalanced(a, b, M, 1., 1.)
+ >>> ot.unbalanced.sinkhorn_stabilized_unbalanced(a, b, M, 1., 1.)
514
515
516
0 commit comments