Skip to content

Commit d754a64

Browse files
Kilian FatrasKilian Fatras
authored andcommitted
typos PEP8
1 parent 9569f89 commit d754a64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_bregman.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def test_empirical_sinkhorn_divergence():
233233
M_s = ot.dist(X_s, X_s)
234234
M_t = ot.dist(X_t, X_t)
235235

236-
emp_sinkhorn_div = empirical_sinkhorn_divergence(X_s, X_t, 1)
236+
emp_sinkhorn_div = ot.bregman.empirical_sinkhorn_divergence(X_s, X_t, 1)
237237
sinkhorn_div = (2 * ot.sinkhorn2(a, b, M, 1) - ot.sinkhorn2(a, a, M_s, 1) -
238238
ot.sinkhorn2(b, b, M_t, 1))
239239

0 commit comments

Comments
 (0)