summaryrefslogtreecommitdiff
path: root/ot/__init__.py
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2017-07-07 08:51:45 +0200
committerRémi Flamary <remi.flamary@gmail.com>2017-07-07 08:51:45 +0200
commit47477c5782f87570de590ea423a082b71dd63241 (patch)
tree00575e528509242cdad2cd283d5e2e0c44e53349 /ot/__init__.py
parent0fc1124e001932354ec3d229d198cba166cd0b0e (diff)
add sinkhorbn2 +v3
Diffstat (limited to 'ot/__init__.py')
-rw-r--r--ot/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ot/__init__.py b/ot/__init__.py
index b2af88b..4220148 100644
--- a/ot/__init__.py
+++ b/ot/__init__.py
@@ -16,14 +16,14 @@ from . import da
# OT functions
from .lp import emd, emd2
-from .bregman import sinkhorn, barycenter
+from .bregman import sinkhorn, sinkhorn2, barycenter
from .da import sinkhorn_lpl1_mm
# utils functions
from .utils import dist, unif, tic, toc, toq
-__version__ = "0.2"
+__version__ = "0.3"
-__all__ = ["emd", "emd2", "sinkhorn", "utils", 'datasets', 'bregman', 'lp',
- 'plot', 'tic', 'toc', 'toq',
+__all__ = ["emd", "emd2", "sinkhorn","sinkhorn2", "utils", 'datasets',
+ 'bregman', 'lp', 'plot', 'tic', 'toc', 'toq',
'dist', 'unif', 'barycenter', 'sinkhorn_lpl1_mm', 'da', 'optim']