summaryrefslogtreecommitdiff
path: root/ot/__init__.py
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2018-02-16 13:53:34 +0100
committerRémi Flamary <remi.flamary@gmail.com>2018-02-16 13:53:34 +0100
commitf089a3cbc27c30ba9416ea1659c2fdbac1857146 (patch)
tree04905ed08da51190f15faa7aff67acb308ee583f /ot/__init__.py
parent4a585de94109102c89bcd7ad43e35772e1027cd2 (diff)
better pep8 but not solved
Diffstat (limited to 'ot/__init__.py')
-rw-r--r--ot/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/ot/__init__.py b/ot/__init__.py
index cee7379..1500e59 100644
--- a/ot/__init__.py
+++ b/ot/__init__.py
@@ -16,7 +16,6 @@ from . import bregman
from . import optim
from . import utils
from . import datasets
-from . import plot
from . import da
from . import gromov
@@ -24,7 +23,6 @@ from . import gromov
from .lp import emd, emd2
from .bregman import sinkhorn, sinkhorn2, barycenter
from .da import sinkhorn_lpl1_mm
-from .gromov import gromov_wasserstein, gromov_wasserstein2
# utils functions
from .utils import dist, unif, tic, toc, toq
@@ -32,5 +30,5 @@ from .utils import dist, unif, tic, toc, toq
__version__ = "0.4.0"
__all__ = ["emd", "emd2", "sinkhorn", "sinkhorn2", "utils", 'datasets',
- 'bregman', 'lp', 'plot', 'tic', 'toc', 'toq',
+ 'bregman', 'lp', 'tic', 'toc', 'toq', 'gromov',
'dist', 'unif', 'barycenter', 'sinkhorn_lpl1_mm', 'da', 'optim']