summaryrefslogtreecommitdiff
path: root/examples/plot_OT_1D.py
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2017-06-13 15:14:45 +0200
committerRémi Flamary <remi.flamary@gmail.com>2017-06-13 15:14:45 +0200
commita7bed093f91922e18fa5902c4d1d63b9712d5794 (patch)
tree30ac6d07116ff74d682b82c9f866def1a44a2aaa /examples/plot_OT_1D.py
parent3af9b06b6b3c24eb02931cd5fbf798034dd6b8a1 (diff)
implement paralell sinkhorn
Diffstat (limited to 'examples/plot_OT_1D.py')
-rw-r--r--examples/plot_OT_1D.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/plot_OT_1D.py b/examples/plot_OT_1D.py
index e5719eb..6661aa3 100644
--- a/examples/plot_OT_1D.py
+++ b/examples/plot_OT_1D.py
@@ -50,7 +50,7 @@ ot.plot.plot1D_mat(a,b,G0,'OT matrix G0')
#%% Sinkhorn
lambd=1e-3
-Gs=ot.sinkhorn(a,b,M,lambd)
+Gs=ot.sinkhorn(a,b,M,lambd,verbose=True)
pl.figure(4)
ot.plot.plot1D_mat(a,b,Gs,'OT matrix Sinkhorn')