Skip to content

Commit 348e684

Browse files
committed
big release file update
1 parent 7c2337c commit 348e684

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

RELEASES.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,29 @@
11
# Releases
22

3-
## 0.9.3dev
3+
## 0.9.4dev
44

55
#### New features
6-
+ `ot.gromov._gw.solve_gromov_linesearch` now has an argument to specifify if the matrices are symmetric in which case the computation can be done faster.
6+
+ `ot.gromov._gw.solve_gromov_linesearch` now has an argument to specify if the matrices are symmetric in which case the computation can be done faster (PR #607).
7+
+ Continuous entropic mapping (PR #613)
8+
+ New general unbalanced solvers for `ot.solve` and BFGS solver and illustrative example (PR #620)
9+
+ Add gradient computation with envelope theorem to sinkhorn solver of `ot.solve` with `grad='envelope'` (PR #605).
710

811
#### Closed issues
9-
- Fixed an issue with cost correction for mismatched labels in `ot.da.BaseTransport` fit methods. This fix addresses the original issue introduced PR #587 (PR #593)
1012
- Fix gpu compatibility of sr(F)GW solvers when `G0 is not None`(PR #596)
1113
- Fix doc and example for lowrank sinkhorn (PR #601)
1214
- Fix issue with empty weights for `ot.emd2` (PR #606, Issue #534)
1315
- Fix a sign error regarding the gradient of `ot.gromov._gw.fused_gromov_wasserstein2` and `ot.gromov._gw.gromov_wasserstein2` for the kl loss (PR #610)
1416
- Fix same sign error for sr(F)GW conditional gradient solvers (PR #611)
1517
- Split `test/test_gromov.py` into `test/gromov/` (PR #619)
1618

19+
## 0.9.3
20+
*January 2024*
21+
22+
23+
#### Closed issues
24+
- Fixed an issue with cost correction for mismatched labels in `ot.da.BaseTransport` fit methods. This fix addresses the original issue introduced PR #587 (PR #593)
25+
26+
1727
## 0.9.2
1828
*December 2023*
1929

ot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# utils functions
5959
from .utils import dist, unif, tic, toc, toq
6060

61-
__version__ = "0.9.3dev"
61+
__version__ = "0.9.4dev"
6262

6363
__all__ = ['emd', 'emd2', 'emd_1d', 'sinkhorn', 'sinkhorn2', 'utils',
6464
'datasets', 'bregman', 'lp', 'tic', 'toc', 'toq', 'gromov',

0 commit comments

Comments
 (0)