summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraje <leo_g_autheron@hotmail.fr>2017-08-30 10:22:48 +0200
committerNicolas Courty <Nico@MacBook-Pro-de-Nicolas.local>2017-09-01 11:09:13 +0200
commit5076131b3954e3e7951f65f4c05d959b68072b97 (patch)
treedf541c7a2eea093527413ea90f40a82f080711ed
parent8875f653e57aa11c8d62d291abb16fdbeff65511 (diff)
Fix name error
-rw-r--r--ot/da.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ot/da.py b/ot/da.py
index 5871aba..b4a69b1 100644
--- a/ot/da.py
+++ b/ot/da.py
@@ -1387,7 +1387,7 @@ class EMDTransport(BaseTransport):
# coupling estimation
self.coupling_ = emd(
- a=self.mu_s, b=self.mu_t, M=self.cost_, max_iter=self.max_iter
+ a=self.mu_s, b=self.mu_t, M=self.cost_, numItermax=self.max_iter
)
return self