Skip to content

Commit b5cfb91

Browse files
[WIP] Partial Fused Gromov-Wasserstein solver (#687)
* merge * new dev version * first commit partial fgw * complete tests + solve_gromov * complete tests + solve_gromov * release
1 parent 4435898 commit b5cfb91

File tree

7 files changed

+746
-7
lines changed

7 files changed

+746
-7
lines changed

CONTRIBUTORS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ The contributors to this library are:
4141
* [Tanguy Kerdoncuff](https://hv0nnus.github.io/) (Sampled Gromov Wasserstein)
4242
* [Minhui Huang](https://mhhuang95.github.io) (Projection Robust Wasserstein Distance)
4343
* [Nathan Cassereau](https://github.com/ncassereau-idris) (Backends)
44-
* [Cédric Vincent-Cuaz](https://github.com/cedricvincentcuaz) (Graph Dictionary Learning, FGW, semi-relaxed FGW, quantized FGW)
44+
* [Cédric Vincent-Cuaz](https://github.com/cedricvincentcuaz) (Graph Dictionary Learning, FGW,
45+
semi-relaxed FGW, quantized FGW, partial FGW)
4546
* [Eloi Tanguy](https://github.com/eloitanguy) (Generalized Wasserstein
4647
Barycenters, GMMOT)
4748
* [Camille Le Coz](https://www.linkedin.com/in/camille-le-coz-8593b91a1/) (EMD2 debug)

RELEASES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
## 0.9.6dev
44

5+
#### New features
6+
- Implement CG solvers for partial FGW (PR #687)
7+
58
#### Closed issues
6-
- Fixed `ot.mapping` solvers which depended on deprecated `cvxpy` `ECOS` solver
7-
(PR #692, Issue #668)
9+
- Fixed `ot.mapping` solvers which depended on deprecated `cvxpy` `ECOS` solver (PR #692, Issue #668)
810

911

1012
## 0.9.5

ot/gromov/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@
102102
from ._partial import (
103103
partial_gromov_wasserstein,
104104
partial_gromov_wasserstein2,
105+
partial_fused_gromov_wasserstein,
106+
partial_fused_gromov_wasserstein2,
105107
solve_partial_gromov_linesearch,
106108
entropic_partial_gromov_wasserstein,
107109
entropic_partial_gromov_wasserstein2,
@@ -173,6 +175,8 @@
173175
"fused_unbalanced_across_spaces_divergence",
174176
"partial_gromov_wasserstein",
175177
"partial_gromov_wasserstein2",
178+
"partial_fused_gromov_wasserstein",
179+
"partial_fused_gromov_wasserstein2",
176180
"solve_partial_gromov_linesearch",
177181
"entropic_partial_gromov_wasserstein",
178182
"entropic_partial_gromov_wasserstein2",

0 commit comments

Comments
 (0)