summaryrefslogtreecommitdiff
path: root/ot/__init__.py
diff options
context:
space:
mode:
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']