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
[MRG] Added argument for warmstart of dual vectors in Sinkhorn-based methods in ot.bregman (#437)
* Allow warmstart in sinkhorn and sinkhorn_log
* Added argument for warmstart of dual vectors in Sinkhorn-based methods in
* Add the number of the PR
* [WIP] CO-Optimal Transport
* Revert "[WIP] CO-Optimal Transport"
This reverts commit f3d36b2.
* reformat with PEP8
* Fix W291 trailing whitespace error in pep8 test
* Rearange position of warmstart argument and edit its description
---------
Co-authored-by: Rémi Flamary <[email protected]>
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
191
191
slow at the moment, we strongly recommend for Jax users to use the [OTT
192
-
toolbox](https://github.com/google-research/ott) when possible.
192
+
toolbox](https://github.com/google-research/ott) when possible.
193
193
As a result of this new feature,
194
194
the old `ot.gpu` submodule is now deprecated since GPU
195
195
implementations can be done using GPU arrays on the torch backends.
@@ -212,7 +212,7 @@ Finally POT was accepted for publication in the Journal of Machine Learning
212
212
Research (JMLR) open source software track and we ask the POT users to cite [this
213
213
paper](https://www.jmlr.org/papers/v22/20-451.html) from now on. The documentation has been improved in particular by adding a
214
214
"Why OT?" section to the quick start guide and several new examples illustrating
215
-
the new features. The documentation now has two version : the stable version
215
+
the new features. The documentation now has two version : the stable version
corresponding to the last release and the master version [https://pythonot.github.io/master](https://pythonot.github.io/master) that corresponds to the
218
218
current master branch on GitHub.
@@ -222,7 +222,7 @@ As usual, we want to thank all the POT contributors (now 37 people have
222
222
contributed to the toolbox). But for this release we thank in particular Nathan
223
223
Cassereau and Kamel Guerda from the AI support team at
224
224
[IDRIS](http://www.idris.fr/) for their support to the development of the
225
-
backend and OpenMP implementations.
225
+
backend and OpenMP implementations.
226
226
227
227
228
228
#### New features
@@ -289,7 +289,7 @@ repository for the new documentation is now hosted at
289
289
290
290
This is the first release where the Python 2.7 tests have been removed. Most of
291
291
the toolbox should still work but we do not offer support for Python 2.7 and
292
-
will close related Issues.
292
+
will close related Issues.
293
293
294
294
A lot of changes have been done to the documentation that is now hosted on
295
295
[https://PythonOT.github.io/](https://PythonOT.github.io/) instead of
@@ -322,7 +322,7 @@ problems.
322
322
323
323
This release is also the moment to thank all the POT contributors (old and new)
324
324
for helping making POT such a nice toolbox. A lot of changes (also in the API)
325
-
are coming for the next versions.
325
+
are coming for the next versions.
326
326
327
327
328
328
#### Features
@@ -351,14 +351,14 @@ are coming for the next versions.
351
351
- Log bugs for Gromov-Wassertein solver (Issue #107, fixed in PR #108)
352
352
- Weight issues in barycenter function (PR #106)
353
353
354
-
## 0.6.0
354
+
## 0.6.0
355
355
*July 2019*
356
356
357
-
This is the first official stable release of POT and this means a jump to 0.6!
357
+
This is the first official stable release of POT and this means a jump to 0.6!
358
358
The library has been used in
359
359
the wild for a while now and we have reached a state where a lot of fundamental
360
360
OT solvers are available and tested. It has been quite stable in the last months
361
-
but kept the beta flag in its Pypi classifiers until now.
361
+
but kept the beta flag in its Pypi classifiers until now.
362
362
363
363
Note that this release will be the last one supporting officially Python 2.7 (See
364
364
https://python3statement.org/ for more reasons). For next release we will keep
0 commit comments