Skip to content

Commit ce0348d

Browse files
committed
V0.2
1 parent 2d08696 commit ce0348d

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ It provides the following solvers:
1515
* Optimal transport for domain adaptation with group lasso regularization [5]
1616
* Conditional gradient [6] and Generalized conditional gradient for regularized OT [7].
1717
* Joint OT matrix and mapping estimation [8].
18+
* Wasserstein Discriminant Analysis [11] (requires autograd + pymanopt).
19+
1820

1921
Some demonstrations (both in Python and Jupyter Notebook format) are available in the examples folder.
2022

docs/source/readme.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ It provides the following solvers:
1818
- Conditional gradient [6] and Generalized conditional gradient for
1919
regularized OT [7].
2020
- Joint OT matrix and mapping estimation [8].
21+
- Wasserstein Discriminant Analysis [11] (requires autograd +
22+
pymanopt).
2123

2224
Some demonstrations (both in Python and Jupyter Notebook format) are
2325
available in the examples folder.

ot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# utils functions
1919
from .utils import dist, unif, tic, toc, toq
2020

21-
__version__ = "0.1.12"
21+
__version__ = "0.2"
2222

2323
__all__ = ["emd", "emd2", "sinkhorn", "utils", 'datasets', 'bregman', 'lp',
2424
'plot', 'tic', 'toc', 'toq',

0 commit comments

Comments
 (0)