summaryrefslogtreecommitdiff
path: root/examples/plot_OT_2D_samples.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/plot_OT_2D_samples.py')
-rw-r--r--examples/plot_OT_2D_samples.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/plot_OT_2D_samples.py b/examples/plot_OT_2D_samples.py
index af1bc12..c3a7cd8 100644
--- a/examples/plot_OT_2D_samples.py
+++ b/examples/plot_OT_2D_samples.py
@@ -42,7 +42,6 @@ a, b = np.ones((n,)) / n, np.ones((n,)) / n # uniform distribution on samples
# loss matrix
M = ot.dist(xs, xt)
-M /= M.max()
##############################################################################
# Plot data
@@ -87,7 +86,7 @@ pl.title('OT matrix with samples')
#%% sinkhorn
# reg term
-lambd = 1e-3
+lambd = 1e-1
Gs = ot.sinkhorn(a, b, M, lambd)
@@ -112,7 +111,7 @@ pl.show()
#%% sinkhorn
# reg term
-lambd = 1e-3
+lambd = 1e-1
Ges = ot.bregman.empirical_sinkhorn(xs, xt, lambd)