Skip to content

Commit 89e6010

Browse files
add citation for srgw-kl (#580)
1 parent 6d2a865 commit 89e6010

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,4 +340,6 @@ distances between Gaussian distributions](https://hal.science/hal-03197398v2/fil
340340

341341
[60] Feydy, J., Roussillon, P., Trouvé, A., & Gori, P. (2019). [Fast and scalable optimal transport for brain tractograms](https://arxiv.org/pdf/2107.02010.pdf). In Medical Image Computing and Computer Assisted Intervention–MICCAI 2019: 22nd International Conference, Shenzhen, China, October 13–17, 2019, Proceedings, Part III 22 (pp. 636-644). Springer International Publishing.
342342

343-
[61] Charlier, B., Feydy, J., Glaunes, J. A., Collin, F. D., & Durif, G. (2021). [Kernel operations on the gpu, with autodiff, without memory overflows](https://www.jmlr.org/papers/volume22/20-275/20-275.pdf). The Journal of Machine Learning Research, 22(1), 3457-3462.
343+
[61] Charlier, B., Feydy, J., Glaunes, J. A., Collin, F. D., & Durif, G. (2021). [Kernel operations on the gpu, with autodiff, without memory overflows](https://www.jmlr.org/papers/volume22/20-275/20-275.pdf). The Journal of Machine Learning Research, 22(1), 3457-3462.
344+
345+
[62] H. Van Assel, C. Vincent-Cuaz, T. Vayer, R. Flamary, N. Courty (2023). [Interpolating between Clustering and Dimensionality Reduction with Gromov-Wasserstein](https://arxiv.org/pdf/2310.03398.pdf). NeurIPS 2023 Workshop Optimal Transport and Machine Learning.

ot/gromov/_semirelaxed.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ def semirelaxed_gromov_wasserstein(C1, C2, p=None, loss_fun='square_loss', symme
9090
.. [48] Cédric Vincent-Cuaz, Rémi Flamary, Marco Corneli, Titouan Vayer, Nicolas Courty.
9191
"Semi-relaxed Gromov-Wasserstein divergence and applications on graphs"
9292
International Conference on Learning Representations (ICLR), 2022.
93+
.. [62] H. Van Assel, C. Vincent-Cuaz, T. Vayer, R. Flamary, N. Courty.
94+
"Interpolating between Clustering and Dimensionality Reduction with
95+
Gromov-Wasserstein". NeurIPS 2023 Workshop OTML.
96+
9397
"""
9498
arr = [C1, C2]
9599
if p is not None:
@@ -220,6 +224,10 @@ def semirelaxed_gromov_wasserstein2(C1, C2, p=None, loss_fun='square_loss', symm
220224
.. [48] Cédric Vincent-Cuaz, Rémi Flamary, Marco Corneli, Titouan Vayer, Nicolas Courty.
221225
"Semi-relaxed Gromov-Wasserstein divergence and applications on graphs"
222226
International Conference on Learning Representations (ICLR), 2022.
227+
228+
.. [62] H. Van Assel, C. Vincent-Cuaz, T. Vayer, R. Flamary, N. Courty.
229+
"Interpolating between Clustering and Dimensionality Reduction with
230+
Gromov-Wasserstein". NeurIPS 2023 Workshop OTML.
223231
"""
224232
# partial get_backend as the full one will be handled in gromov_wasserstein
225233
nx = get_backend(C1, C2)
@@ -331,6 +339,10 @@ def semirelaxed_fused_gromov_wasserstein(
331339
.. [48] Cédric Vincent-Cuaz, Rémi Flamary, Marco Corneli, Titouan Vayer, Nicolas Courty.
332340
"Semi-relaxed Gromov-Wasserstein divergence and applications on graphs"
333341
International Conference on Learning Representations (ICLR), 2022.
342+
343+
.. [62] H. Van Assel, C. Vincent-Cuaz, T. Vayer, R. Flamary, N. Courty.
344+
"Interpolating between Clustering and Dimensionality Reduction with
345+
Gromov-Wasserstein". NeurIPS 2023 Workshop OTML.
334346
"""
335347
arr = [M, C1, C2]
336348
if p is not None:
@@ -470,6 +482,10 @@ def semirelaxed_fused_gromov_wasserstein2(M, C1, C2, p=None, loss_fun='square_lo
470482
.. [48] Cédric Vincent-Cuaz, Rémi Flamary, Marco Corneli, Titouan Vayer, Nicolas Courty.
471483
"Semi-relaxed Gromov-Wasserstein divergence and applications on graphs"
472484
International Conference on Learning Representations (ICLR), 2022.
485+
486+
.. [62] H. Van Assel, C. Vincent-Cuaz, T. Vayer, R. Flamary, N. Courty.
487+
"Interpolating between Clustering and Dimensionality Reduction with
488+
Gromov-Wasserstein". NeurIPS 2023 Workshop OTML.
473489
"""
474490
# partial get_backend as the full one will be handled in gromov_wasserstein
475491
nx = get_backend(C1, C2)
@@ -561,6 +577,10 @@ def solve_semirelaxed_gromov_linesearch(G, deltaG, cost_G, C1, C2, ones_p,
561577
.. [48] Cédric Vincent-Cuaz, Rémi Flamary, Marco Corneli, Titouan Vayer, Nicolas Courty.
562578
"Semi-relaxed Gromov-Wasserstein divergence and applications on graphs"
563579
International Conference on Learning Representations (ICLR), 2021.
580+
581+
.. [62] H. Van Assel, C. Vincent-Cuaz, T. Vayer, R. Flamary, N. Courty.
582+
"Interpolating between Clustering and Dimensionality Reduction with
583+
Gromov-Wasserstein". NeurIPS 2023 Workshop OTML.
564584
"""
565585
if nx is None:
566586
G, deltaG, C1, C2, M = list_to_array(G, deltaG, C1, C2, M)

0 commit comments

Comments
 (0)