summaryrefslogtreecommitdiff
path: root/ot/__init__.py
diff options
context:
space:
mode:
authoreloitanguy <69361683+eloitanguy@users.noreply.github.com>2022-05-06 08:43:21 +0200
committerGitHub <noreply@github.com>2022-05-06 08:43:21 +0200
commitccc076e0fc535b2c734214c0ac1936e9e2cbeb62 (patch)
treeb5a20af6fabcaefa0de4bc27afd9049bd15612f6 /ot/__init__.py
parenteccb1386eea52b94b82456d126bd20cbe3198e05 (diff)
[WIP] Generalized Wasserstein Barycenters (#372)
* GWB first solver version * tests + example for gwb (untested) + free_bar doc fix * improved doc, fixed minor bugs, better example visu * minor doc + visu fixes * plot GWB pep8 fix * fixed partial gromov test reproductibility * added an animation for the GWB visu * added PR num * minor doc fixes + better gwb logo
Diffstat (limited to 'ot/__init__.py')
-rw-r--r--ot/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ot/__init__.py b/ot/__init__.py
index 86ed94e..15d8351 100644
--- a/ot/__init__.py
+++ b/ot/__init__.py
@@ -51,7 +51,7 @@ from .factored import factored_optimal_transport
# utils functions
from .utils import dist, unif, tic, toc, toq
-__version__ = "0.8.2"
+__version__ = "0.8.3dev"
__all__ = ['emd', 'emd2', 'emd_1d', 'sinkhorn', 'sinkhorn2', 'utils',
'datasets', 'bregman', 'lp', 'tic', 'toc', 'toq', 'gromov',