Skip to content

Commit cec41d3

Browse files
authoredNov 5, 2021
[MRG] Release 0.8 (#289)
* working on release * test circleci * try again * cleanup circle ci run * add all PR and releant Issues * update doc * thanks idris * update version + add pyproject.toml * test pyproject.toml * revert tests * build wheels * use windows-latest for tests * add tests python 3.10 * build all whels * all versions * build all wheels * build all wheels * cleanup pep8 and minimal acions * forst shot text release * bettr text * stuff * release text updated * update manifest to allow build from source * update doc again * update release
1 parent 0eac835 commit cec41d3

11 files changed

+365
-58
lines changed
 

‎.github/workflows/build_tests.yml

+8-18
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
max-parallel: 4
2424
matrix:
25-
python-version: [ 3.6, 3.7, 3.8, 3.9]
25+
python-version: [ "3.6", "3.7", "3.8", "3.9"]
2626

2727
steps:
2828
- uses: actions/checkout@v1
@@ -48,17 +48,12 @@ jobs:
4848
pep8:
4949
runs-on: ubuntu-latest
5050
if: "!contains(github.event.head_commit.message, 'no pep8')"
51-
strategy:
52-
max-parallel: 4
53-
matrix:
54-
python-version: [3.8]
55-
5651
steps:
5752
- uses: actions/checkout@v1
58-
- name: Set up Python ${{ matrix.python-version }}
53+
- name: Set up Python
5954
uses: actions/setup-python@v1
6055
with:
61-
python-version: ${{ matrix.python-version }}
56+
python-version: 3.9
6257
- name: Install dependencies
6358
run: |
6459
python -m pip install --upgrade pip
@@ -74,17 +69,12 @@ jobs:
7469

7570
runs-on: ubuntu-latest
7671
if: "!contains(github.event.head_commit.message, 'no ci')"
77-
strategy:
78-
max-parallel: 4
79-
matrix:
80-
python-version: [3.8]
81-
8272
steps:
8373
- uses: actions/checkout@v1
84-
- name: Set up Python ${{ matrix.python-version }}
74+
- name: Set up Python
8575
uses: actions/setup-python@v1
8676
with:
87-
python-version: ${{ matrix.python-version }}
77+
python-version: 3.9
8878
- name: Install dependencies
8979
run: |
9080
python -m pip install --upgrade pip
@@ -103,7 +93,7 @@ jobs:
10393
strategy:
10494
max-parallel: 4
10595
matrix:
106-
python-version: [3.7, 3.8, 3.9]
96+
python-version: ["3.7", "3.8", "3.9"]
10797

10898
steps:
10999
- uses: actions/checkout@v1
@@ -125,12 +115,12 @@ jobs:
125115
126116
127117
windows:
128-
runs-on: windows-2019
118+
runs-on: windows-latest
129119
if: "!contains(github.event.head_commit.message, 'no ci')"
130120
strategy:
131121
max-parallel: 4
132122
matrix:
133-
python-version: [3.7, 3.8, 3.9]
123+
python-version: ["3.7", "3.8", "3.9"]
134124

135125
steps:
136126
- uses: actions/checkout@v1

‎.github/workflows/build_wheels.yml

+5-8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Build wheels
33
on:
44
workflow_dispatch:
55
release:
6+
pull_request:
67
push:
78
branches:
89
- "*"
@@ -31,7 +32,7 @@ jobs:
3132
3233
- name: Install cibuildwheel
3334
run: |
34-
python -m pip install cibuildwheel==1.10.0
35+
python -m pip install cibuildwheel==2.2.2
3536
3637
- name: Build wheels
3738
env:
@@ -69,12 +70,7 @@ jobs:
6970
7071
- name: Install cibuildwheel
7172
run: |
72-
python -m pip install cibuildwheel==1.10.0
73-
74-
- name: Install Visual C++ for Python 2.7
75-
if: startsWith(matrix.os, 'windows')
76-
run: |
77-
choco install vcpython27 -f -y
73+
python -m pip install cibuildwheel==2.2.2
7874
7975
- name: Set up QEMU
8076
if: runner.os == 'Linux'
@@ -84,9 +80,10 @@ jobs:
8480

8581
- name: Build wheels
8682
env:
87-
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp*" # remove pypy on mac and win (wrong version)
83+
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp*musl*" # remove pypy on mac and win (wrong version)
8884
CIBW_BEFORE_BUILD: "pip install numpy cython"
8985
CIBW_ARCHS_LINUX: auto aarch64 # force aarch64 with QEMU
86+
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
9087
run: |
9188
python -m cibuildwheel --output-dir wheelhouse
9289

‎.github/workflows/build_wheels_weekly.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
3232
- name: Install cibuildwheel
3333
run: |
34-
python -m pip install cibuildwheel==1.10.0
34+
python -m pip install cibuildwheel==2.2.2
3535
3636
- name: Set up QEMU
3737
if: runner.os == 'Linux'
@@ -41,9 +41,10 @@ jobs:
4141

4242
- name: Build wheels
4343
env:
44-
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp*" # remove pypy on mac and win (wrong version)
44+
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp*musl*" # remove pypy on mac and win (wrong version)
4545
CIBW_BEFORE_BUILD: "pip install numpy cython"
4646
CIBW_ARCHS_LINUX: auto aarch64 # force aarch64 with QEMU
47+
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
4748
run: |
4849
python -m cibuildwheel --output-dir wheelhouse
4950

‎MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ include ot/lp/EMD.h
66
include ot/lp/EMD_wrapper.cpp
77
include ot/lp/emd_wrap.pyx
88
include ot/lp/full_bipartitegraph.h
9+
include ot/lp/full_bipartitegraph_omp.h
910
include ot/lp/network_simplex_simple.h
11+
include ot/lp/network_simplex_simple_omp.h

‎RELEASES.md

+174-18
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,167 @@
11
# Releases
22

3-
## 0.7.0
4-
*May 2020*
53

6-
This is the new stable release for POT. We made a lot of changes in the documentation and added several new features such as Partial OT, Unbalanced and Multi Sources OT Domain Adaptation and several bug fixes. One important change is that we have created the GitHub organization [PythonOT](https://github.com/PythonOT) that now owns the main POT repository [https://github.com/PythonOT/POT](https://github.com/PythonOT/POT) and the repository for the new documentation is now hosted at [https://PythonOT.github.io/](https://PythonOT.github.io/).
4+
## 0.8.0
5+
*November 2021*
6+
7+
This new stable release introduces several important features.
8+
9+
First we now have
10+
an OpenMP compatible exact ot solver in `ot.emd`. The OpenMP version is used
11+
when the parameter `numThreads` is greater than one and can lead to nice
12+
speedups on multi-core machines.
13+
14+
Second we have introduced a backend mechanism that allows to use standard POT
15+
function seamlessly on Numpy, Pytorch and Jax arrays. Other backends are coming
16+
but right now POT can be used seamlessly for training neural networks in
17+
Pytorch. Notably we propose the first differentiable computation of the exact OT
18+
loss with `ot.emd2` (can be differentiated w.r.t. both cost matrix and sample
19+
weights), but also for the classical Sinkhorn loss with `ot.sinkhorn2`, the
20+
Wasserstein distance in 1D with `ot.wasserstein_1d`, sliced Wasserstein with
21+
`ot.sliced_wasserstein_distance` and Gromov-Wasserstein with `ot.gromov_wasserstein2`. Examples of how
22+
this new feature can be used are now available in the documentation where the
23+
Pytorch backend is used to estimate a [minimal Wasserstein
24+
estimator](https://PythonOT.github.io/auto_examples/backends/plot_unmix_optim_torch.html),
25+
a [Generative Network
26+
(GAN)](https://PythonOT.github.io/auto_examples/backends/plot_wass2_gan_torch.html),
27+
for a [sliced Wasserstein gradient
28+
flow](https://PythonOT.github.io/auto_examples/backends/plot_sliced_wass_grad_flow_pytorch.html)
29+
and [optimizing the Gromov-Wassersein distance](https://PythonOT.github.io/auto_examples/backends/plot_optim_gromov_pytorch.html). Note that the Jax backend is still in early development and quite
30+
slow at the moment, we strongly recommend for Jax users to use the [OTT
31+
toolbox](https://github.com/google-research/ott) when possible.
32+
As a result of this new feature,
33+
the old `ot.gpu` submodule is now deprecated since GPU
34+
implementations can be done using GPU arrays on the torch backends.
35+
36+
Other novel features include implementation for [Sampled Gromov Wasserstein and
37+
Pointwise Gromov
38+
Wasserstein](https://PythonOT.github.io/auto_examples/gromov/plot_gromov.html#compute-gw-with-a-scalable-stochastic-method-with-any-loss-function),
39+
Sinkhorn in log space with `method='sinkhorn_log'`, [Projection Robust
40+
Wasserstein](https://PythonOT.github.io/gen_modules/ot.dr.html?highlight=robust#ot.dr.projection_robust_wasserstein),
41+
ans [deviased Sinkorn barycenters](https://PythonOT.github.ioauto_examples/barycenters/plot_debiased_barycenter.html).
42+
43+
This release will also simplify the installation process. We have now a
44+
`pyproject.toml` that defines the build dependency and POT should now build even
45+
when cython is not installed yet. Also we now provide pe-compiled wheels for
46+
linux `aarch64` that is used on Raspberry PI and android phones and for MacOS on
47+
ARM processors.
48+
49+
50+
Finally POT was accepted for publication in the Journal of Machine Learning
51+
Research (JMLR) open source software track and we ask the POT users to cite [this
52+
paper](https://www.jmlr.org/papers/v22/20-451.html) from now on. The documentation has been improved in particular by adding a
53+
"Why OT?" section to the quick start guide and several new examples illustrating
54+
the new features. The documentation now has two version : the stable version
55+
[https://pythonot.github.io/](https://pythonot.github.io/)
56+
corresponding to the last release and the master version [https://pythonot.github.io/master](https://pythonot.github.io/master) that corresponds to the
57+
current master branch on GitHub.
58+
59+
60+
As usual, we want to thank all the POT contributors (now 37 people have
61+
contributed to the toolbox). But for this release we thank in particular Nathan
62+
Cassereau and Kamel Guerda from the AI support team at
63+
[IDRIS](http://www.idris.fr/) for their support to the development of the
64+
backend and OpenMP implementations.
65+
66+
67+
#### New features
68+
69+
- OpenMP support for exact OT solvers (PR #260)
70+
- Backend for running POT in numpy/torch + exact solver (PR #249)
71+
- Backend implementation of most functions in `ot.bregman` (PR #280)
72+
- Backend implementation of most functions in `ot.optim` (PR #282)
73+
- Backend implementation of most functions in `ot.gromov` (PR #294, PR #302)
74+
- Test for arrays of different type and device (CPU/GPU) (PR #304, #303)
75+
- Implementation of Sinkhorn in log space with `method='sinkhorn_log'` (PR #290)
76+
- Implementation of regularization path for L2 Unbalanced OT (PR #274)
77+
- Implementation of Projection Robust Wasserstein (PR #267)
78+
- Implementation of Debiased Sinkhorn Barycenters (PR #291)
79+
- Implementation of Sampled Gromov Wasserstein and Pointwise Gromov Wasserstein
80+
(PR #275)
81+
- Add `pyproject.toml` and build POT without installing cython first (PR #293)
82+
- Lazy implementation in log space for sinkhorn on samples (PR #259)
83+
- Documentation cleanup (PR #298)
84+
- Two up-to-date documentations [for stable
85+
release](https://PythonOT.github.io/) and for [master branch](https://pythonot.github.io/master/).
86+
- Building wheels on ARM for Raspberry PI and smartphones (PR #238)
87+
- Update build wheels to new version and new pythons (PR #236, #253)
88+
- Implementation of sliced Wasserstein distance (Issue #202, PR #203)
89+
- Add minimal build to CI and perform pep8 test separately (PR #210)
90+
- Speedup of tests and return run time (PR #262)
91+
- Add "Why OT" discussion to the documentation (PR #220)
92+
- New introductory example to discrete OT in the documentation (PR #191)
93+
- Add templates for Issues/PR on Github (PR#181)
794

8-
This is the first release where the Python 2.7 tests have been removed. Most of the toolbox should still work but we do not offer support for Python 2.7 and will close related Issues.
95+
#### Closed issues
996

10-
A lot of changes have been done to the documentation that is now hosted on [https://PythonOT.github.io/](https://PythonOT.github.io/) instead of readthedocs. It was a hard choice but readthedocs did not allow us to run sphinx-gallery to update our beautiful examples and it was a huge amount of work to maintain. The documentation is now automatically compiled and updated on merge. We also removed the notebooks from the repository for space reason and also because they are all available in the [example gallery](https://pythonot.github.io/auto_examples/index.html). Note that now the output of the documentation build for each commit in the PR is available to check that the doc builds correctly before merging which was not possible with readthedocs.
97+
- Debug Memory leak in GAN example (#254)
98+
- DEbug GPU bug (Issue #284, #287, PR #288)
99+
- set_gradients method for JAX backend (PR #278)
100+
- Quicker GAN example for CircleCI build (PR #258)
101+
- Better formatting in Readme (PR #234)
102+
- Debug CI tests (PR #240, #241, #242)
103+
- Bug in Partial OT solver dummy points (PR #215)
104+
- Bug when Armijo linesearch (Issue #184, #198, #281, PR #189, #199, #286)
105+
- Bug Barycenter Sinkhorn (Issue 134, PR #195)
106+
- Infeasible solution in exact OT (Issues #126,#93, PR #217)
107+
- Doc for SUpport Barycenters (Issue #200, PR #201)
108+
- Fix labels transport in BaseTransport (Issue #207, PR #208)
109+
- Bug in `emd_1d`, non respected bounds (Issue #169, PR #170)
110+
- Removed Python 2.7 support and update codecov file (PR #178)
111+
- Add normalization for WDA and test it (PR #172, #296)
112+
- Cleanup code for new version of `flake8` (PR #176)
113+
- Fixed requirements in `setup.py` (PR #174)
114+
- Removed specific MacOS flags (PR #175)
11115

12-
The CI framework has also been changed with a move from Travis to Github Action which allows to get faster tests on Windows, MacOS and Linux. We also now report our coverage on [Codecov.io](https://codecov.io/gh/PythonOT/POT) and we have a reasonable 92% coverage. We also now generate wheels for a number of OS and Python versions at each merge in the master branch. They are available as outputs of this [action](https://github.com/PythonOT/POT/actions?query=workflow%3A%22Build+dist+and+wheels%22). This will allow simpler multi-platform releases from now on.
13116

14-
In terms of new features we now have [OTDA Classes for unbalanced OT](https://pythonot.github.io/gen_modules/ot.da.html#ot.da.UnbalancedSinkhornTransport), a new Domain adaptation class form [multi domain problems (JCPOT)](https://pythonot.github.io/auto_examples/domain-adaptation/plot_otda_jcpot.html#sphx-glr-auto-examples-domain-adaptation-plot-otda-jcpot-py), and several solvers to solve the [Partial Optimal Transport](https://pythonot.github.io/auto_examples/unbalanced-partial/plot_partial_wass_and_gromov.html#sphx-glr-auto-examples-unbalanced-partial-plot-partial-wass-and-gromov-py) problems.
117+
## 0.7.0
118+
*May 2020*
15119

16-
This release is also the moment to thank all the POT contributors (old and new) for helping making POT such a nice toolbox. A lot of changes (also in the API) are comming for the next versions.
120+
This is the new stable release for POT. We made a lot of changes in the
121+
documentation and added several new features such as Partial OT, Unbalanced and
122+
Multi Sources OT Domain Adaptation and several bug fixes. One important change
123+
is that we have created the GitHub organization
124+
[PythonOT](https://github.com/PythonOT) that now owns the main POT repository
125+
[https://github.com/PythonOT/POT](https://github.com/PythonOT/POT) and the
126+
repository for the new documentation is now hosted at
127+
[https://PythonOT.github.io/](https://PythonOT.github.io/).
128+
129+
This is the first release where the Python 2.7 tests have been removed. Most of
130+
the toolbox should still work but we do not offer support for Python 2.7 and
131+
will close related Issues.
132+
133+
A lot of changes have been done to the documentation that is now hosted on
134+
[https://PythonOT.github.io/](https://PythonOT.github.io/) instead of
135+
readthedocs. It was a hard choice but readthedocs did not allow us to run
136+
sphinx-gallery to update our beautiful examples and it was a huge amount of work
137+
to maintain. The documentation is now automatically compiled and updated on
138+
merge. We also removed the notebooks from the repository for space reason and
139+
also because they are all available in the [example
140+
gallery](https://pythonot.github.io/auto_examples/index.html). Note that now the
141+
output of the documentation build for each commit in the PR is available to
142+
check that the doc builds correctly before merging which was not possible with
143+
readthedocs.
144+
145+
The CI framework has also been changed with a move from Travis to Github Action
146+
which allows to get faster tests on Windows, MacOS and Linux. We also now report
147+
our coverage on [Codecov.io](https://codecov.io/gh/PythonOT/POT) and we have a
148+
reasonable 92% coverage. We also now generate wheels for a number of OS and
149+
Python versions at each merge in the master branch. They are available as
150+
outputs of this
151+
[action](https://github.com/PythonOT/POT/actions?query=workflow%3A%22Build+dist+and+wheels%22).
152+
This will allow simpler multi-platform releases from now on.
153+
154+
In terms of new features we now have [OTDA Classes for unbalanced
155+
OT](https://pythonot.github.io/gen_modules/ot.da.html#ot.da.UnbalancedSinkhornTransport),
156+
a new Domain adaptation class form [multi domain problems
157+
(JCPOT)](https://pythonot.github.io/auto_examples/domain-adaptation/plot_otda_jcpot.html#sphx-glr-auto-examples-domain-adaptation-plot-otda-jcpot-py),
158+
and several solvers to solve the [Partial Optimal
159+
Transport](https://pythonot.github.io/auto_examples/unbalanced-partial/plot_partial_wass_and_gromov.html#sphx-glr-auto-examples-unbalanced-partial-plot-partial-wass-and-gromov-py)
160+
problems.
161+
162+
This release is also the moment to thank all the POT contributors (old and new)
163+
for helping making POT such a nice toolbox. A lot of changes (also in the API)
164+
are coming for the next versions.
17165

18166

19167
#### Features
@@ -31,6 +179,8 @@ This release is also the moment to thank all the POT contributors (old and new)
31179

32180
#### Closed issues
33181

182+
- Add JMLR paper to teh readme ad Mathieu Blondel to the Acknoledgments (PR
183+
#231, #232)
34184
- Bug in Unbalanced OT example (Issue #127)
35185
- Clean Cython output when calling setup.py clean (Issue #122)
36186
- Various Macosx compilation problems (Issue #113, Issue #118, PR#130)
@@ -54,18 +204,24 @@ https://python3statement.org/ for more reasons). For next release we will keep
54204
the travis tests for Python 2 but will make them non necessary for merge in 2020.
55205

56206
The features are never complete in a toolbox designed for solving mathematical
57-
problems and research but with the new contributions we now implement algorithms and solvers
58-
from 24 scientific papers (listed in the README.md file). New features include a
59-
direct implementation of the [empirical Sinkhorn divergence](https://pot.readthedocs.io/en/latest/all.html#ot.bregman.empirical_sinkhorn_divergence)
60-
, a new efficient (Cython implementation) solver for [EMD in 1D](https://pot.readthedocs.io/en/latest/all.html#ot.lp.emd_1d)
61-
and corresponding [Wasserstein
62-
1D](https://pot.readthedocs.io/en/latest/all.html#ot.lp.wasserstein_1d). We now also
63-
have implementations for [Unbalanced OT](https://github.com/rflamary/POT/blob/master/notebooks/plot_UOT_1D.ipynb)
64-
and a solver for [Unbalanced OT barycenters](https://github.com/rflamary/POT/blob/master/notebooks/plot_UOT_barycenter_1D.ipynb).
207+
problems and research but with the new contributions we now implement algorithms
208+
and solvers from 24 scientific papers (listed in the README.md file). New
209+
features include a direct implementation of the [empirical Sinkhorn
210+
divergence](https://pot.readthedocs.io/en/latest/all.html#ot.bregman.empirical_sinkhorn_divergence),
211+
a new efficient (Cython implementation) solver for [EMD in
212+
1D](https://pot.readthedocs.io/en/latest/all.html#ot.lp.emd_1d) and
213+
corresponding [Wasserstein
214+
1D](https://pot.readthedocs.io/en/latest/all.html#ot.lp.wasserstein_1d). We now
215+
also have implementations for [Unbalanced
216+
OT](https://github.com/rflamary/POT/blob/master/notebooks/plot_UOT_1D.ipynb) and
217+
a solver for [Unbalanced OT
218+
barycenters](https://github.com/rflamary/POT/blob/master/notebooks/plot_UOT_barycenter_1D.ipynb).
65219
A new variant of Gromov-Wasserstein divergence called [Fused
66220
Gromov-Wasserstein](https://pot.readthedocs.io/en/latest/all.html?highlight=fused_#ot.gromov.fused_gromov_wasserstein)
67-
has been also contributed with exemples of use on [structured data](https://github.com/rflamary/POT/blob/master/notebooks/plot_fgw.ipynb)
68-
and computing [barycenters of labeld graphs](https://github.com/rflamary/POT/blob/master/notebooks/plot_barycenter_fgw.ipynb).
221+
has been also contributed with exemples of use on [structured
222+
data](https://github.com/rflamary/POT/blob/master/notebooks/plot_fgw.ipynb) and
223+
computing [barycenters of labeld
224+
graphs](https://github.com/rflamary/POT/blob/master/notebooks/plot_barycenter_fgw.ipynb).
69225

70226

71227
A lot of work has been done on the documentation with several new

‎docs/source/readme.rst

+25-3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ POT provides the following generic OT solvers (links to examples):
3434
[21] and unmixing [4].
3535
- Sinkhorn divergence [23] and entropic regularization OT from
3636
empirical data.
37+
- Debiased Sinkhorn barycenters `Sinkhorn divergence
38+
barycenter <auto_examples/barycenters/plot_debiased_barycenter.html>`__
39+
[37]
3740
- `Smooth optimal transport
3841
solvers <auto_examples/plot_OT_1D_smooth.html>`__
3942
(dual and semi-dual) for KL and squared L2 regularizations [17].
@@ -44,7 +47,8 @@ POT provides the following generic OT solvers (links to examples):
4447
distances <auto_examples/gromov/plot_gromov.html>`__
4548
and `GW
4649
barycenters <auto_examples/gromov/plot_gromov_barycenter.html>`__
47-
(exact [13] and regularized [12])
50+
(exact [13] and regularized [12]), differentiable using gradients
51+
from
4852
- `Fused-Gromov-Wasserstein distances
4953
solver <auto_examples/gromov/plot_fgw.html#sphx-glr-auto-examples-plot-fgw-py>`__
5054
and `FGW
@@ -70,7 +74,8 @@ POT provides the following generic OT solvers (links to examples):
7074
(exact [29] and entropic [3] formulations).
7175
- `Sliced
7276
Wasserstein <auto_examples/sliced-wasserstein/plot_variance.html>`__
73-
[31, 32].
77+
[31, 32] and Max-sliced Wasserstein [35] that can be used for
78+
gradient flows [36].
7479
- `Several
7580
backends <https://pythonot.github.io/quickstart.html#solving-ot-with-multiple-backends>`__
7681
for easy use of POT with
@@ -278,7 +283,8 @@ The contributors to this library are
278283
Rakotomamonjy <https://sites.google.com/site/alainrakotomamonjy/home>`__
279284
- `Vayer Titouan <https://tvayer.github.io/>`__ (Gromov-Wasserstein -,
280285
Fused-Gromov-Wasserstein)
281-
- `Hicham Janati <https://hichamjanati.github.io/>`__ (Unbalanced OT)
286+
- `Hicham Janati <https://hichamjanati.github.io/>`__ (Unbalanced OT,
287+
Debiased barycenters)
282288
- `Romain Tavenard <https://rtavenar.github.io/>`__ (1d Wasserstein)
283289
- `Mokhtar Z. Alaya <http://mzalaya.github.io/>`__ (Screenkhorn)
284290
- `Ievgen Redko <https://ievred.github.io/>`__ (Laplacian DA, JCPOT)
@@ -501,6 +507,22 @@ gans <https://openaccess.thecvf.com/content_CVPR_2019/papers/Deshpande_Max-Slice
501507
In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern
502508
Recognition (pp. 10648-10656).
503509

510+
[36] Liutkus, A., Simsekli, U., Majewski, S., Durmus, A., & Stöter, F.
511+
R. (2019, May). `Sliced-Wasserstein flows: Nonparametric generative
512+
modeling via optimal transport and
513+
diffusions <http://proceedings.mlr.press/v97/liutkus19a/liutkus19a.pdf>`__.
514+
In International Conference on Machine Learning (pp. 4104-4113). PMLR.
515+
516+
[37] Janati, H., Cuturi, M., Gramfort, A. `Debiased sinkhorn
517+
barycenters <http://proceedings.mlr.press/v119/janati20a/janati20a.pdf>`__
518+
Proceedings of the 37th International Conference on Machine Learning,
519+
PMLR 119:4692-4701, 2020
520+
521+
[38] C. Vincent-Cuaz, T. Vayer, R. Flamary, M. Corneli, N. Courty,
522+
`Online Graph Dictionary
523+
Learning <https://arxiv.org/pdf/2102.06555.pdf>`__, International
524+
Conference on Machine Learning (ICML), 2021.
525+
504526
.. |PyPI version| image:: https://badge.fury.io/py/POT.svg
505527
:target: https://badge.fury.io/py/POT
506528
.. |Anaconda Cloud| image:: https://anaconda.org/conda-forge/pot/badges/version.svg

‎docs/source/releases.rst

+131-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,132 @@
11
Releases
22
========
33

4+
0.8.0
5+
-----
6+
7+
*November 2021*
8+
9+
This new stable release introduces several important features.
10+
11+
First we now have an OpenMP compatible exact ot solver in ``ot.emd``.
12+
The OpenMP version is used when the parameter ``numThreads`` is greater
13+
than one and can lead to nice speedups on multi-core machines.
14+
15+
| Second we have introduced a backend mechanism that allows to use
16+
standard POT function seamlessly on Numpy, Pytorch and Jax arrays.
17+
Other backends are coming but right now POT can be used seamlessly for
18+
training neural networks in Pytorch. Notably we propose the first
19+
differentiable computation of the exact OT loss with ``ot.emd2`` (can
20+
be differentiated w.r.t. both cost matrix and sample weights), but
21+
also for the classical Sinkhorn loss with ``ot.sinkhorn2``, the
22+
Wasserstein distance in 1D with ``ot.wasserstein_1d``, sliced
23+
Wasserstein with ``ot.sliced_wasserstein_distance`` and
24+
Gromov-Wasserstein with ``ot.gromov_wasserstein2``. Examples of how
25+
this new feature can be used are now available in the documentation
26+
where the Pytorch backend is used to estimate a `minimal Wasserstein
27+
estimator <https://PythonOT.github.io/auto_examples/backends/plot_unmix_optim_torch.html>`__,
28+
a `Generative Network
29+
(GAN) <https://PythonOT.github.io/auto_examples/backends/plot_wass2_gan_torch.html>`__,
30+
for a `sliced Wasserstein gradient
31+
flow <https://PythonOT.github.io/auto_examples/backends/plot_sliced_wass_grad_flow_pytorch.html>`__
32+
and `optimizing the Gromov-Wassersein
33+
distance <https://PythonOT.github.io/auto_examples/backends/plot_optim_gromov_pytorch.html>`__.
34+
Note that the Jax backend is still in early development and quite slow
35+
at the moment, we strongly recommend for Jax users to use the `OTT
36+
toolbox <https://github.com/google-research/ott>`__ when possible.
37+
| As a result of this new feature, the old ``ot.gpu`` submodule is now
38+
deprecated since GPU implementations can be done using GPU arrays on
39+
the torch backends.
40+
41+
Other novel features include implementation for `Sampled Gromov
42+
Wasserstein and Pointwise Gromov
43+
Wasserstein <https://PythonOT.github.io/auto_examples/gromov/plot_gromov.html#compute-gw-with-a-scalable-stochastic-method-with-any-loss-function>`__,
44+
Sinkhorn in log space with ``method='sinkhorn_log'``, `Projection Robust
45+
Wasserstein <https://PythonOT.github.io/gen_modules/ot.dr.html?highlight=robust#ot.dr.projection_robust_wasserstein>`__,
46+
ans `deviased Sinkorn
47+
barycenters <https://PythonOT.github.ioauto_examples/barycenters/plot_debiased_barycenter.html>`__.
48+
49+
This release will also simplify the installation process. We have now a
50+
``pyproject.toml`` that defines the build dependency and POT should now
51+
build even when cython is not installed yet. Also we now provide
52+
pe-compiled wheels for linux ``aarch64`` that is used on Raspberry PI
53+
and android phones and for MacOS on ARM processors.
54+
55+
Finally POT was accepted for publication in the Journal of Machine
56+
Learning Research (JMLR) open source software track and we ask the POT
57+
users to cite `this
58+
paper <https://www.jmlr.org/papers/v22/20-451.html>`__ from now on. The
59+
documentation has been improved in particular by adding a "Why OT?"
60+
section to the quick start guide and several new examples illustrating
61+
the new features. The documentation now has two version : the stable
62+
version https://pythonot.github.io/ corresponding to the last release
63+
and the master version https://pythonot.github.io/master that
64+
corresponds to the current master branch on GitHub.
65+
66+
As usual, we want to thank all the POT contributors (now 37 people have
67+
contributed to the toolbox). But for this release we thank in particular
68+
Nathan Cassereau and Kamel Guerda from the AI support team at
69+
`IDRIS <http://www.idris.fr/>`__ for their support to the development of
70+
the backend and OpenMP implementations.
71+
72+
New features
73+
^^^^^^^^^^^^
74+
75+
- OpenMP support for exact OT solvers (PR #260)
76+
- Backend for running POT in numpy/torch + exact solver (PR #249)
77+
- Backend implementation of most functions in ``ot.bregman`` (PR #280)
78+
- Backend implementation of most functions in ``ot.optim`` (PR #282)
79+
- Backend implementation of most functions in ``ot.gromov`` (PR #294,
80+
PR #302)
81+
- Test for arrays of different type and device (CPU/GPU) (PR #304,
82+
#303)
83+
- Implementation of Sinkhorn in log space with
84+
``method='sinkhorn_log'`` (PR #290)
85+
- Implementation of regularization path for L2 Unbalanced OT (PR #274)
86+
- Implementation of Projection Robust Wasserstein (PR #267)
87+
- Implementation of Debiased Sinkhorn Barycenters (PR #291)
88+
- Implementation of Sampled Gromov Wasserstein and Pointwise Gromov
89+
Wasserstein (PR #275)
90+
- Add ``pyproject.toml`` and build POT without installing cython first
91+
(PR #293)
92+
- Lazy implementation in log space for sinkhorn on samples (PR #259)
93+
- Documentation cleanup (PR #298)
94+
- Two up-to-date documentations `for stable
95+
release <https://PythonOT.github.io/>`__ and for `master
96+
branch <https://pythonot.github.io/master/>`__.
97+
- Building wheels on ARM for Raspberry PI and smartphones (PR #238)
98+
- Update build wheels to new version and new pythons (PR #236, #253)
99+
- Implementation of sliced Wasserstein distance (Issue #202, PR #203)
100+
- Add minimal build to CI and perform pep8 test separately (PR #210)
101+
- Speedup of tests and return run time (PR #262)
102+
- Add "Why OT" discussion to the documentation (PR #220)
103+
- New introductory example to discrete OT in the documentation (PR
104+
#191)
105+
- Add templates for Issues/PR on Github (PR#181)
106+
107+
Closed issues
108+
^^^^^^^^^^^^^
109+
110+
- Debug Memory leak in GAN example (#254)
111+
- DEbug GPU bug (Issue #284, #287, PR #288)
112+
- set\_gradients method for JAX backend (PR #278)
113+
- Quicker GAN example for CircleCI build (PR #258)
114+
- Better formatting in Readme (PR #234)
115+
- Debug CI tests (PR #240, #241, #242)
116+
- Bug in Partial OT solver dummy points (PR #215)
117+
- Bug when Armijo linesearch (Issue #184, #198, #281, PR #189, #199,
118+
#286)
119+
- Bug Barycenter Sinkhorn (Issue 134, PR #195)
120+
- Infeasible solution in exact OT (Issues #126,#93, PR #217)
121+
- Doc for SUpport Barycenters (Issue #200, PR #201)
122+
- Fix labels transport in BaseTransport (Issue #207, PR #208)
123+
- Bug in ``emd_1d``, non respected bounds (Issue #169, PR #170)
124+
- Removed Python 2.7 support and update codecov file (PR #178)
125+
- Add normalization for WDA and test it (PR #172, #296)
126+
- Cleanup code for new version of ``flake8`` (PR #176)
127+
- Fixed requirements in ``setup.py`` (PR #174)
128+
- Removed specific MacOS flags (PR #175)
129+
4130
0.7.0
5131
-----
6132

@@ -50,7 +176,7 @@ problems.
50176

51177
This release is also the moment to thank all the POT contributors (old
52178
and new) for helping making POT such a nice toolbox. A lot of changes
53-
(also in the API) are comming for the next versions.
179+
(also in the API) are coming for the next versions.
54180

55181
Features
56182
^^^^^^^^
@@ -72,6 +198,8 @@ Features
72198
Closed issues
73199
^^^^^^^^^^^^^
74200

201+
- Add JMLR paper to teh readme ad Mathieu Blondel to the Acknoledgments
202+
(PR #231, #232)
75203
- Bug in Unbalanced OT example (Issue #127)
76204
- Clean Cython output when calling setup.py clean (Issue #122)
77205
- Various Macosx compilation problems (Issue #113, Issue #118, PR#130)
@@ -103,8 +231,8 @@ mathematical problems and research but with the new contributions we now
103231
implement algorithms and solvers from 24 scientific papers (listed in
104232
the README.md file). New features include a direct implementation of the
105233
`empirical Sinkhorn
106-
divergence <all.html#ot.bregman.empirical_sinkhorn_divergence>`__
107-
, a new efficient (Cython implementation) solver for `EMD in
234+
divergence <all.html#ot.bregman.empirical_sinkhorn_divergence>`__,
235+
a new efficient (Cython implementation) solver for `EMD in
108236
1D <all.html#ot.lp.emd_1d>`__ and
109237
corresponding `Wasserstein
110238
1D <all.html#ot.lp.wasserstein_1d>`__.

‎examples/backends/plot_optim_gromov_pytorch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def plot_graph(x, C, color='C0', s=None):
9494

9595

9696
# %%
97-
# Optimizing the weights of a simple template C0=eye(3) to fit Graph 1
97+
# Optimizing GW w.r.t. the weights on a template structure
9898
# ------------------------------------------------
9999
# The adajacency matrix C1 is block diagonal with 3 blocks. We want to
100100
# optimize the weights of a simple template C0=eye(3) and see if we can

‎ot/__init__.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
:py:mod:`ot.lp`, :py:mod:`ot.bregman`, :py:mod:`ot.optim`
66
:py:mod:`ot.utils`, :py:mod:`ot.datasets`,
77
:py:mod:`ot.gromov`, :py:mod:`ot.smooth`
8-
:py:mod:`ot.stochastic`
8+
:py:mod:`ot.stochastic`, :py:mod:`ot.partial`, :py:mod:`ot.regpath`
9+
, :py:mod:`ot.unbalanced`.
910
1011
The following sub-modules are not imported due to additional dependencies:
1112
@@ -49,13 +50,14 @@
4950
# utils functions
5051
from .utils import dist, unif, tic, toc, toq
5152

52-
__version__ = "0.8.0dev"
53+
__version__ = "0.8.0"
5354

5455
__all__ = ['emd', 'emd2', 'emd_1d', 'sinkhorn', 'sinkhorn2', 'utils',
5556
'datasets', 'bregman', 'lp', 'tic', 'toc', 'toq', 'gromov',
5657
'emd2_1d', 'wasserstein_1d', 'backend',
5758
'dist', 'unif', 'barycenter', 'sinkhorn_lpl1_mm', 'da', 'optim',
5859
'sinkhorn_unbalanced', 'barycenter_unbalanced',
5960
'sinkhorn_unbalanced2', 'sliced_wasserstein_distance',
60-
'max_sliced_wasserstein_distance',
61+
'gromov_wasserstein', 'gromov_wasserstein2', 'gromov_barycenters', 'fused_gromov_wasserstein', 'fused_gromov_wasserstein2',
62+
'max_sliced_wasserstein_distance',
6163
'smooth', 'stochastic', 'unbalanced', 'partial', 'regpath']

‎ot/gpu/__init__.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77
<https://cupy.chainer.org/>`_.
88
99
.. warning::
10-
Note that by default the module is not import in :mod:`ot`. In order to
10+
This module is now deprecated and will be removed in future releases. POT
11+
now privides a backend mechanism that allows for solving prolem on GPU wth
12+
the pytorch backend.
13+
14+
15+
.. warning::
16+
Note that by default the module is not imported in :mod:`ot`. In order to
1117
use it you need to explicitely import :mod:`ot.gpu` .
1218
1319
By default, the functions in this module accept and return numpy arrays
@@ -36,7 +42,7 @@
3642
from .utils import dist, to_gpu, to_np
3743

3844

39-
warnings.warn('This module will be deprecated in the next minor release of POT', category=DeprecationWarning)
45+
warnings.warn('This module is deprecated and will be removed in the next minor release of POT', category=DeprecationWarning)
4046

4147

4248
__all__ = ["utils", "dist", "sinkhorn",

‎ot/helpers/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Author: Remi Flamary <remi.flamary@unice.fr>
2+
#
3+
# License: MIT License

0 commit comments

Comments
 (0)
Please sign in to comment.