@@ -77,8 +77,8 @@ def sinkhorn_unbalanced(a, b, M, reg, mu, method='sinkhorn', numItermax=1000,
77
77
>>> b=[.5, .5]
78
78
>>> M=[[0., 1.], [1., 0.]]
79
79
>>> ot.sinkhorn_unbalanced(a, b, M, 1, 1)
80
- array([[0.51122823 , 0.18807035 ],
81
- [0.18807035 , 0.51122823 ]])
80
+ array([[0.51122818 , 0.18807034 ],
81
+ [0.18807034 , 0.51122818 ]])
82
82
83
83
84
84
References
@@ -193,7 +193,7 @@ def sinkhorn_unbalanced2(a, b, M, reg, mu, method='sinkhorn',
193
193
>>> b=[.5, .5]
194
194
>>> M=[[0., 1.],[1., 0.]]
195
195
>>> ot.unbalanced.sinkhorn_unbalanced2(a, b, M, 1., 1.)
196
- array([0.31912866 ])
196
+ array([0.31912862 ])
197
197
198
198
199
199
@@ -308,8 +308,8 @@ def sinkhorn_knopp_unbalanced(a, b, M, reg, mu, numItermax=1000,
308
308
>>> b=[.5, .5]
309
309
>>> M=[[0., 1.],[1., 0.]]
310
310
>>> ot.unbalanced.sinkhorn_knopp_unbalanced(a, b, M, 1., 1.)
311
- array([[0.51122823 , 0.18807035 ],
312
- [0.18807035 , 0.51122823 ]])
311
+ array([[0.51122818 , 0.18807034 ],
312
+ [0.18807034 , 0.51122818 ]])
313
313
314
314
References
315
315
----------
@@ -479,8 +479,8 @@ def sinkhorn_stabilized_unbalanced(a, b, M, reg, mu, tau=1e5, numItermax=1000,
479
479
>>> b=[.5, .5]
480
480
>>> M=[[0., 1.],[1., 0.]]
481
481
>>> ot.unbalanced.sinkhorn_stabilized_unbalanced(a, b, M, 1., 1.)
482
- array([[0.51122823 , 0.18807035 ],
483
- [0.18807035 , 0.51122823 ]])
482
+ array([[0.51122818 , 0.18807034 ],
483
+ [0.18807034 , 0.51122818 ]])
484
484
485
485
References
486
486
----------
0 commit comments