summaryrefslogtreecommitdiff
path: root/ot/bregman.py
diff options
context:
space:
mode:
authorievred <ievgen.redko@univ-st-etienne.fr>2020-04-08 10:08:47 +0200
committerievred <ievgen.redko@univ-st-etienne.fr>2020-04-08 10:08:47 +0200
commitc68b52d1623683e86555484bf9a4875a66957bb6 (patch)
treee7727a19ed7ba3a47a1df1ec893d0bc27c2eec57 /ot/bregman.py
parent2c9f992157844d6253a302905417e86580ac6b12 (diff)
remove laplace from jcpot
Diffstat (limited to 'ot/bregman.py')
-rw-r--r--ot/bregman.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/ot/bregman.py b/ot/bregman.py
index 61dfa52..410ae85 100644
--- a/ot/bregman.py
+++ b/ot/bregman.py
@@ -1607,7 +1607,6 @@ def jcpot_barycenter(Xs, Ys, Xt, reg, metric='sqeuclidean', numItermax=100,
# build the cost matrix and the Gibbs kernel
Mtmp = dist(Xs[d], Xt, metric=metric)
- Mtmp = Mtmp / np.median(Mtmp)
M.append(Mtmp)
Ktmp = np.empty(Mtmp.shape, dtype=Mtmp.dtype)