summaryrefslogtreecommitdiff
path: root/ot/__init__.py
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2017-03-10 10:18:12 +0100
committerRémi Flamary <remi.flamary@gmail.com>2017-03-10 10:18:12 +0100
commitdf32d77316e79a663312544129048f8fee949817 (patch)
treedb5fe129c08268e0aa72a36b19dfebd3705de540 /ot/__init__.py
parent0b806374d33ae83d39846096a1838b096c0c0b8e (diff)
first try
Diffstat (limited to 'ot/__init__.py')
-rw-r--r--ot/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ot/__init__.py b/ot/__init__.py
index 55016a4..ee294d8 100644
--- a/ot/__init__.py
+++ b/ot/__init__.py
@@ -11,7 +11,7 @@ from . import plot
from . import da
# OT functions
-from .lp import emd
+from .lp import emd, emd2
from .bregman import sinkhorn, barycenter
from .da import sinkhorn_lpl1_mm
@@ -20,5 +20,5 @@ from .utils import dist, unif, tic, toc, toq
__version__ = "0.1.12"
-__all__ = ["emd", "sinkhorn", "utils", 'datasets', 'bregman', 'lp', 'plot',
+__all__ = ["emd", "emd2", "sinkhorn", "utils", 'datasets', 'bregman', 'lp', 'plot',
'dist', 'unif', 'barycenter', 'sinkhorn_lpl1_mm', 'da', 'optim']