You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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
Copy file name to clipboardexpand all lines: RELEASES.md
+174-18
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,167 @@
1
1
# Releases
2
2
3
-
## 0.7.0
4
-
*May 2020*
5
3
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
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
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)
7
94
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
9
96
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)
- 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)
11
115
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.
13
116
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*
15
119
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
0 commit comments