Skip to content

Commit 14fbb88

Browse files
author
ievred
committed
references added
1 parent 6c64f16 commit 14fbb88

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ It provides the following solvers:
2020
* Smooth optimal transport solvers (dual and semi-dual) for KL and squared L2 regularizations [17].
2121
* Non regularized Wasserstein barycenters [16] with LP solver (only small scale).
2222
* Bregman projections for Wasserstein barycenter [3], convolutional barycenter [21] and unmixing [4].
23-
* Optimal transport for domain adaptation with group lasso regularization [5]
23+
* Optimal transport for domain adaptation with group lasso and Laplacian regularization [5]
2424
* Conditional gradient [6] and Generalized conditional gradient for regularized OT [7].
2525
* Linear OT [14] and Joint OT matrix and mapping estimation [8].
2626
* Wasserstein Discriminant Analysis [11] (requires autograd + pymanopt).
@@ -183,6 +183,7 @@ The contributors to this library are
183183
* [Hicham Janati](https://hichamjanati.github.io/) (Unbalanced OT)
184184
* [Romain Tavenard](https://rtavenar.github.io/) (1d Wasserstein)
185185
* [Mokhtar Z. Alaya](http://mzalaya.github.io/) (Screenkhorn)
186+
* [Ievgen Redko](https://ievred.github.io/)
186187

187188
This toolbox benefit a lot from open source research and we would like to thank the following persons for providing some code (in various languages):
188189

@@ -259,4 +260,6 @@ You can also post bug reports and feature requests in Github issues. Make sure t
259260

260261
[26] Alaya M. Z., Bérar M., Gasso G., Rakotomamonjy A. (2019). [Screening Sinkhorn Algorithm for Regularized Optimal Transport](https://papers.nips.cc/paper/9386-screening-sinkhorn-algorithm-for-regularized-optimal-transport), Advances in Neural Information Processing Systems 33 (NeurIPS).
261262

262-
[27] Redko I., Courty N., Flamary R., Tuia D. (2019). [Optimal Transport for Multi-source Domain Adaptation under Target Shift](http://proceedings.mlr.press/v89/redko19a.html), Proceedings of the Twenty-Second International Conference on Artificial Intelligence and Statistics (AISTATS) 22, 2019.
263+
[27] Redko I., Courty N., Flamary R., Tuia D. (2019). [Optimal Transport for Multi-source Domain Adaptation under Target Shift](http://proceedings.mlr.press/v89/redko19a.html), Proceedings of the Twenty-Second International Conference on Artificial Intelligence and Statistics (AISTATS) 22, 2019.
264+
265+
[28] Flamary R., Courty N., Tuia D., Rakotomamonjy A. (2014). [Optimal transport with Laplacian regularization: Applications to domain adaptation and shape matching](https://remi.flamary.com/biblio/flamary2014optlaplace.pdf), NIPS Workshop on Optimal Transport and Machine Learning OTML, 2014.

ot/da.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,9 @@ def emd_laplace(a, b, xs, xt, M, sim, eta, alpha,
818818
"Optimal Transport for Domain Adaptation," in IEEE
819819
Transactions on Pattern Analysis and Machine Intelligence ,
820820
vol.PP, no.99, pp.1-1
821+
.. [28] R. Flamary, N. Courty, D. Tuia, A. Rakotomamonjy,
822+
"Optimal transport with Laplacian regularization: Applications to domain adaptation and shape matching,"
823+
in NIPS Workshop on Optimal Transport and Machine Learning OTML, 2014.
821824
822825
See Also
823826
--------
@@ -1729,6 +1732,9 @@ class EMDLaplaceTransport(BaseTransport):
17291732
.. [1] N. Courty; R. Flamary; D. Tuia; A. Rakotomamonjy,
17301733
"Optimal Transport for Domain Adaptation," in IEEE Transactions
17311734
on Pattern Analysis and Machine Intelligence , vol.PP, no.99, pp.1-1
1735+
.. [2] R. Flamary, N. Courty, D. Tuia, A. Rakotomamonjy,
1736+
"Optimal transport with Laplacian regularization: Applications to domain adaptation and shape matching,"
1737+
in NIPS Workshop on Optimal Transport and Machine Learning OTML, 2014.
17321738
"""
17331739

17341740
def __init__(self, reg_lap=1., reg_src=1., alpha=0.5,

0 commit comments

Comments
 (0)