summaryrefslogtreecommitdiff
path: root/ot/__init__.py
diff options
context:
space:
mode:
authorCédric Vincent-Cuaz <cedvincentcuaz@gmail.com>2022-02-11 10:53:38 +0100
committerGitHub <noreply@github.com>2022-02-11 10:53:38 +0100
commit50c0f17d00e3492c4d56a356af30cf00d6d07913 (patch)
tree57abfe9510fdba64f6e9c1c4b4716e7b0ba28ed0 /ot/__init__.py
parenta5e0f0d40d5046a6639924347ef97e2ac80ad0c9 (diff)
[MRG] GW dictionary learning (#319)
* add fgw dictionary learning feature * add fgw dictionary learning feature * plot gromov wasserstein dictionary learning * Update __init__.py * fix pep8 errors exact E501 line too long * fix last pep8 issues * add unitary tests for (F)GW dictionary learning without using autodifferentiable functions * correct tests for (F)GW dictionary learning without using autodiff * correct tests for (F)GW dictionary learning without using autodiff * fix docs and notations * answer to review: improve tests, docs, examples + make node weights optional * fix pep8 and examples * improve docs + tests + thumbnail * make example faster * improve ex * update README.md * make GDL tests faster Co-authored-by: Rémi Flamary <remi.flamary@gmail.com>
Diffstat (limited to 'ot/__init__.py')
-rw-r--r--ot/__init__.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/ot/__init__.py b/ot/__init__.py
index 7253318..bda7a35 100644
--- a/ot/__init__.py
+++ b/ot/__init__.py
@@ -1,5 +1,4 @@
"""
-
.. warning::
The list of automatically imported sub-modules is as follows:
:py:mod:`ot.lp`, :py:mod:`ot.bregman`, :py:mod:`ot.optim`
@@ -7,13 +6,10 @@
:py:mod:`ot.gromov`, :py:mod:`ot.smooth`
:py:mod:`ot.stochastic`, :py:mod:`ot.partial`, :py:mod:`ot.regpath`
, :py:mod:`ot.unbalanced`.
-
The following sub-modules are not imported due to additional dependencies:
-
- :any:`ot.dr` : depends on :code:`pymanopt` and :code:`autograd`.
- :any:`ot.gpu` : depends on :code:`cupy` and a CUDA GPU.
- :any:`ot.plot` : depends on :code:`matplotlib`
-
"""
# Author: Remi Flamary <remi.flamary@unice.fr>