summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--docs/source/readme.rst2
-rw-r--r--ot/__init__.py2
3 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index 15cd599..f2d6144 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,8 @@ It provides the following solvers:
* Optimal transport for domain adaptation with group lasso regularization [5]
* Conditional gradient [6] and Generalized conditional gradient for regularized OT [7].
* Joint OT matrix and mapping estimation [8].
+* Wasserstein Discriminant Analysis [11] (requires autograd + pymanopt).
+
Some demonstrations (both in Python and Jupyter Notebook format) are available in the examples folder.
diff --git a/docs/source/readme.rst b/docs/source/readme.rst
index 1d68303..e1d4459 100644
--- a/docs/source/readme.rst
+++ b/docs/source/readme.rst
@@ -18,6 +18,8 @@ It provides the following solvers:
- Conditional gradient [6] and Generalized conditional gradient for
regularized OT [7].
- Joint OT matrix and mapping estimation [8].
+- Wasserstein Discriminant Analysis [11] (requires autograd +
+ pymanopt).
Some demonstrations (both in Python and Jupyter Notebook format) are
available in the examples folder.
diff --git a/ot/__init__.py b/ot/__init__.py
index 9a253d2..d89b3a3 100644
--- a/ot/__init__.py
+++ b/ot/__init__.py
@@ -18,7 +18,7 @@ from .da import sinkhorn_lpl1_mm
# utils functions
from .utils import dist, unif, tic, toc, toq
-__version__ = "0.1.12"
+__version__ = "0.2"
__all__ = ["emd", "emd2", "sinkhorn", "utils", 'datasets', 'bregman', 'lp',
'plot', 'tic', 'toc', 'toq',