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] More general solvers for `ot.solveand examples of different variants. (#620)
* add exaple and allow for functional regularizers
* fix test since ow all is implemented
* manuel regularizer available for exact and unbalanecd ot
* exmaple with banaced manuel regularizer
* upate documenation
* pep8
* clenaup envelope instedaof implicit
* big release file update
Copy file name to clipboardExpand all lines: RELEASES.md
+13-3Lines changed: 13 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,29 @@
1
1
# Releases
2
2
3
-
## 0.9.3dev
3
+
## 0.9.4dev
4
4
5
5
#### 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).
7
10
8
11
#### 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)
10
12
- Fix gpu compatibility of sr(F)GW solvers when `G0 is not None`(PR #596)
11
13
- Fix doc and example for lowrank sinkhorn (PR #601)
12
14
- Fix issue with empty weights for `ot.emd2` (PR #606, Issue #534)
13
15
- 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)
14
16
- Fix same sign error for sr(F)GW conditional gradient solvers (PR #611)
15
17
- Split `test/test_gromov.py` into `test/gromov/` (PR #619)
16
18
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)
0 commit comments