ot.gromov.GW_distance_estimation(C1, C2, p, q, loss_fun, T, nb_samples_p=None, nb_samples_q=None, std=True, random_state=None)[source]
Returns an approximation of the Gromov-Wasserstein loss between \((\mathbf{C_1}, \mathbf{p})\) and \((\mathbf{C_2}, \mathbf{q})\)
with a fixed transport plan \(\mathbf{T}\). To recover an approximation of the Gromov-Wasserstein distance as defined in [13] compute \(d_{GW} = \frac{1}{2} \sqrt{\mathbf{GW}}\).
The function gives an unbiased approximation of the following equation:
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
L : Loss function to account for the misfit between the similarity matrices
\(\mathbf{T}\): Matrix with marginal \(\mathbf{p}\) and \(\mathbf{q}\)
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,)) – Distribution in the source space
q (array-like, shape (nt,)) – Distribution in the target space
loss_fun (function: \(\mathbb{R} \times \mathbb{R} \mapsto \mathbb{R}\)) – Loss function used for the distance, the transport plan does not depend on the loss function
T (csr or array-like, shape (ns, nt)) – Transport plan matrix, either a sparse csr or a dense matrix
nb_samples_p (int, optional) – nb_samples_p is the number of samples (without replacement) along the first dimension of \(\mathbf{T}\)
nb_samples_q (int, optional) – nb_samples_q is the number of samples along the second dimension of \(\mathbf{T}\), for each sample along the first
std (bool, optional) – Standard deviation associated with the prediction of the gromov-wasserstein cost
random_state (int or RandomState instance, optional) – Fix the seed for reproducibility
Returns the Fused Gromov-Wasserstein barycenters of S measurable networks with node features \((\mathbf{C}_s, \mathbf{Y}_s, \mathbf{p}_s)_{1 \leq s \leq S}\)
estimated using Fused Gromov-Wasserstein transports from Sinkhorn projections.
The function solves the following optimization problem:
Ys (list of array-like, each element has shape (ns,d)) – Features of all samples
Cs (list of S array-like of shape (ns,ns)) – Metric cost matrices
ps (list of S array-like of shape (ns,), optional) – Sample weights in the S spaces.
If let to its default value None, uniform distributions are taken.
p (array-like, shape (N,), optional) – Weights in the targeted barycenter.
If let to its default value None, uniform distribution is taken.
lambdas (list of float, optional) – List of the S spaces’ weights.
If let to its default value None, uniform weights are taken.
loss_fun (callable, optional) – tensor-matrix multiplication function based on specific loss function
epsilon (float, optional) – Regularization term >0
symmetric (bool, optional.) – Either structures are to be assumed symmetric or not. Default value is True.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
Returns the Fused Gromov-Wasserstein transport between \((\mathbf{C_1}, \mathbf{Y_1}, \mathbf{p})\) and \((\mathbf{C_2}, \mathbf{Y_2}, \mathbf{q})\)
with pairwise distance matrix \(\mathbf{M}\) between node feature matrices \(\mathbf{Y_1}\) and \(\mathbf{Y_2}\),
estimated using Sinkhorn projections.
If solver=”PGD”, the function solves the following entropic-regularized
Fused Gromov-Wasserstein optimization problem using Projected Gradient Descent [12]:
\(\mathbf{M}\): metric cost matrix between features across domains
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
\(\mathbf{q}\): distribution in the target space
L: loss function to account for the misfit between the similarity and feature matrices
H: entropy
\(\alpha\): trade-off parameter
Note
If the inner solver ot.sinkhorn did not convergence, the
optimal coupling \(\mathbf{T}\) returned by this function does not
necessarily satisfy the marginal constraints
\(\mathbf{T}\mathbf{1}=\mathbf{p}\) and
\(\mathbf{T}^T\mathbf{1}=\mathbf{q}\). So the returned
Fused Gromov-Wasserstein loss does not necessarily satisfy distance
properties and may be negative.
Parameters:
M (array-like, shape (ns, nt)) – Metric cost matrix between features across domains
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
q (array-like, shape (nt,), optional) – Distribution in the target space.
If let to its default value None, uniform distribution is taken.
loss_fun (string, optional) – Loss function used for the solver either ‘square_loss’ or ‘kl_loss’
epsilon (float, optional) – Regularization term >0
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymetric).
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 will be used as initial transport of the solver. G0 is not
required to satisfy marginal constraints but we strongly recommand it
to correcly estimate the GW distance.
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on error (>0)
solver (string, optional) – Solver to use either ‘PGD’ for Projected Gradient Descent or ‘PPA’
for Proximal Point Algorithm.
Default value is ‘PGD’.
warmstart (bool, optional) – Either to perform warmstart of dual potentials in the successive
Sinkhorn projections.
verbose (bool, optional) – Print information along iterations
**kwargs (dict) – parameters can be directly passed to the ot.sinkhorn solver.
Such as numItermax and stopThr to control its estimation precision,
e.g [51] suggests to use numItermax=1.
Returns the Fused Gromov-Wasserstein distance between \((\mathbf{C_1}, \mathbf{Y_1}, \mathbf{p})\) and \((\mathbf{C_2}, \mathbf{Y_2}, \mathbf{q})\)
with pairwise distance matrix \(\mathbf{M}\) between node feature matrices \(\mathbf{Y_1}\) and \(\mathbf{Y_2}\),
estimated using Sinkhorn projections.
If solver=”PGD”, the function solves the following entropic-regularized
Fused Gromov-Wasserstein optimization problem using Projected Gradient Descent [12]:
\(\mathbf{M}\): metric cost matrix between features across domains
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
\(\mathbf{q}\): distribution in the target space
L: loss function to account for the misfit between the similarity and feature matrices
H: entropy
\(\alpha\): trade-off parameter
Note
If the inner solver ot.sinkhorn did not convergence, the
optimal coupling \(\mathbf{T}\) returned by this function does not
necessarily satisfy the marginal constraints
\(\mathbf{T}\mathbf{1}=\mathbf{p}\) and
\(\mathbf{T}^T\mathbf{1}=\mathbf{q}\). So the returned
Fused Gromov-Wasserstein loss does not necessarily satisfy distance
properties and may be negative.
Parameters:
M (array-like, shape (ns, nt)) – Metric cost matrix between features across domains
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
q (array-like, shape (nt,), optional) – Distribution in the target space.
If let to its default value None, uniform distribution is taken.
loss_fun (string, optional) – Loss function used for the solver either ‘square_loss’ or ‘kl_loss’
epsilon (float, optional) – Regularization term >0
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymetric).
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 will be used as initial transport of the solver. G0 is not
required to satisfy marginal constraints but we strongly recommand it
to correcly estimate the GW distance.
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on error (>0)
verbose (bool, optional) – Print information along iterations
Returns the Gromov-Wasserstein barycenters of S measured similarity matrices \((\mathbf{C}_s)_{1 \leq s \leq S}\)
estimated using Gromov-Wasserstein transports from Sinkhorn projections.
The function solves the following optimization problem:
Cs (list of S array-like of shape (ns,ns)) – Metric cost matrices
ps (list of S array-like of shape (ns,), optional) – Sample weights in the S spaces.
If let to its default value None, uniform distributions are taken.
p (array-like, shape (N,), optional) – Weights in the targeted barycenter.
If let to its default value None, uniform distribution is taken.
lambdas (list of float, optional) – List of the S spaces’ weights.
If let to its default value None, uniform weights are taken.
loss_fun (callable, optional) – tensor-matrix multiplication function based on specific loss function
epsilon (float, optional) – Regularization term >0
symmetric (bool, optional.) – Either structures are to be assumed symmetric or not. Default value is True.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on error (>0)
warmstartT (bool, optional) – Either to perform warmstart of transport plans in the successive
gromov-wasserstein transport problems.
verbose (bool, optional) – Print information along iterations.
Returns the Gromov-Wasserstein transport between \((\mathbf{C_1}, \mathbf{p})\) and \((\mathbf{C_2}, \mathbf{q})\)
estimated using Sinkhorn projections.
If solver=”PGD”, the function solves the following entropic-regularized
Gromov-Wasserstein optimization problem using Projected Gradient Descent [12]:
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
\(\mathbf{q}\): distribution in the target space
L: loss function to account for the misfit between the similarity matrices
H: entropy
Note
If the inner solver ot.sinkhorn did not convergence, the
optimal coupling \(\mathbf{T}\) returned by this function does not
necessarily satisfy the marginal constraints
\(\mathbf{T}\mathbf{1}=\mathbf{p}\) and
\(\mathbf{T}^T\mathbf{1}=\mathbf{q}\). So the returned
Gromov-Wasserstein loss does not necessarily satisfy distance
properties and may be negative.
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
q (array-like, shape (nt,), optional) – Distribution in the target space.
If let to its default value None, uniform distribution is taken.
loss_fun (string, optional) – Loss function used for the solver either ‘square_loss’ or ‘kl_loss’
epsilon (float, optional) – Regularization term >0
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 will be used as initial transport of the solver. G0 is not
required to satisfy marginal constraints but we strongly recommand it
to correcly estimate the GW distance.
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on error (>0)
solver (string, optional) – Solver to use either ‘PGD’ for Projected Gradient Descent or ‘PPA’
for Proximal Point Algorithm.
Default value is ‘PGD’.
warmstart (bool, optional) – Either to perform warmstart of dual potentials in the successive
Sinkhorn projections.
verbose (bool, optional) – Print information along iterations
**kwargs (dict) – parameters can be directly passed to the ot.sinkhorn solver.
Such as numItermax and stopThr to control its estimation precision,
e.g [51] suggests to use numItermax=1.
Returns the Gromov-Wasserstein loss \(\mathbf{GW}\) between \((\mathbf{C_1}, \mathbf{p})\) and \((\mathbf{C_2}, \mathbf{q})\)
estimated using Sinkhorn projections. To recover the Gromov-Wasserstein distance as defined in [13] compute \(d_{GW} = \frac{1}{2} \sqrt{\mathbf{GW}}\).
If solver=”PGD”, the function solves the following entropic-regularized
Gromov-Wasserstein optimization problem using Projected Gradient Descent [12]:
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
\(\mathbf{q}\): distribution in the target space
L: loss function to account for the misfit between the similarity matrices
H: entropy
Note
If the inner solver ot.sinkhorn did not convergence, the
optimal coupling \(\mathbf{T}\) returned by this function does not
necessarily satisfy the marginal constraints
\(\mathbf{T}\mathbf{1}=\mathbf{p}\) and
\(\mathbf{T}^T\mathbf{1}=\mathbf{q}\). So the returned
Gromov-Wasserstein loss does not necessarily satisfy distance
properties and may be negative.
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
q (array-like, shape (nt,), optional) – Distribution in the target space.
If let to its default value None, uniform distribution is taken.
loss_fun (string, optional) – Loss function used for the solver either ‘square_loss’ or ‘kl_loss’
epsilon (float, optional) – Regularization term >0
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 will be used as initial transport of the solver. G0 is not
required to satisfy marginal constraints but we strongly recommand it
to correcly estimate the GW distance.
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on error (>0)
solver (string, optional) – Solver to use either ‘PGD’ for Projected Gradient Descent or ‘PPA’
for Proximal Point Algorithm.
Default value is ‘PGD’.
warmstart (bool, optional) – Either to perform warmstart of dual potentials in the successive
Sinkhorn projections.
verbose (bool, optional) – Print information along iterations
**kwargs (dict) – parameters can be directly passed to the ot.sinkhorn solver.
Such as numItermax and stopThr to control its estimation precision,
e.g [51] suggests to use numItermax=1.
Computes the entropic-regularized semi-relaxed FGW transport between two graphs (see [48])
estimated using a Mirror Descent algorithm following the KL geometry.
\(\mathbf{M}\) is the (ns, nt) metric cost matrix between features
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\) source weights (sum to 1)
L is a loss function to account for the misfit between the similarity matrices
Note
This function is backend-compatible and will work on arrays
from all compatible backends. However all the steps in the conditional
gradient are not differentiable.
The algorithm used for solving the problem is conditional gradient as discussed in [48]
Parameters:
M (array-like, shape (ns, nt)) – Metric cost matrix between features across domains
C1 (array-like, shape (ns, ns)) – Metric cost matrix representative of the structure in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix representative of the structure in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
loss_fun (str) – loss function used for the solver either ‘square_loss’ or ‘kl_loss’.
‘kl_loss’ is not implemented yet and will raise an error.
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymetric).
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on error computed on transport plans
Computes the entropic-regularized semi-relaxed FGW divergence between two graphs (see [48])
estimated using a Mirror Descent algorithm following the KL geometry.
\(\mathbf{M}\) is the (ns, nt) metric cost matrix between features
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\) source weights (sum to 1)
L is a loss function to account for the misfit between the similarity matrices
Note
This function is backend-compatible and will work on arrays
from all compatible backends. However all the steps in the conditional
gradient are not differentiable.
The algorithm used for solving the problem is conditional gradient as discussed in [48]
Parameters:
M (array-like, shape (ns, nt)) – Metric cost matrix between features across domains
C1 (array-like, shape (ns, ns)) – Metric cost matrix representative of the structure in the source space.
C2 (array-like, shape (nt, nt)) – Metric cost matrix representative of the structure in the target space.
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
loss_fun (str, optional) – loss function used for the solver either ‘square_loss’ or ‘kl_loss’.
‘kl_loss’ is not implemented yet and will raise an error.
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymetric).
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on error computed on transport plans
Returns the entropic-regularized semi-relaxed gromov-wasserstein divergence
transport plan from \((\mathbf{C_1}, \mathbf{p})\) to \(\mathbf{C_2}\)
estimated using a Mirror Descent algorithm following the KL geometry.
The function solves the following optimization problem:
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
L: loss function to account for the misfit between the similarity matrices
Note
This function is backend-compatible and will work on arrays
from all compatible backends. However all the steps in the conditional
gradient are not differentiable.
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
loss_fun (str) – loss function used for the solver either ‘square_loss’ or ‘kl_loss’.
‘kl_loss’ is not implemented yet and will raise an error.
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymetric).
verbose (bool, optional) – Print information along iterations
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on error computed on transport plans
Returns the entropic-regularized semi-relaxed gromov-wasserstein divergence
from \((\mathbf{C_1}, \mathbf{p})\) to \(\mathbf{C_2}\)
estimated using a Mirror Descent algorithm following the KL geometry.
The function solves the following optimization problem:
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
L: loss function to account for the misfit between the similarity
matrices
Note that when using backends, this loss function is differentiable wrt the
matrices (C1, C2) but not yet for the weights p.
.. note:: This function is backend-compatible and will work on arrays
from all compatible backends. However all the steps in the conditional
gradient are not differentiable.
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
loss_fun (str) – loss function used for the solver either ‘square_loss’ or ‘kl_loss’.
‘kl_loss’ is not implemented yet and will raise an error.
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymetric).
verbose (bool, optional) – Print information along iterations
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on error computed on transport plans
Returns the Fused Gromov-Wasserstein barycenters of S measurable networks with node features \((\mathbf{C}_s, \mathbf{Y}_s, \mathbf{p}_s)_{1 \leq s \leq S}\)
(see eq (5) in [24]), estimated using Fused Gromov-Wasserstein transports from Conditional Gradient solvers.
The function solves the following optimization problem:
N (int) – Desired number of samples of the target barycenter
Ys (list of array-like, each element has shape (ns,d)) – Features of all samples
Cs (list of array-like, each element has shape (ns,ns)) – Structure matrices of all samples
ps (list of array-like, each element has shape (ns,), optional) – Masses of all samples.
If let to its default value None, uniform distributions are taken.
lambdas (list of float, optional) – List of the S spaces’ weights.
If let to its default value None, uniform weights are taken.
alpha (float, optional) – Alpha parameter for the fgw distance.
fixed_structure (bool) – Whether to fix the structure of the barycenter during the updates
fixed_features (bool) – Whether to fix the feature of the barycenter during the updates
p (array-like, shape (N,), optional) – Weights in the targeted barycenter.
If let to its default value None, uniform distribution is taken.
loss_fun (str) – Loss function used for the solver either ‘square_loss’ or ‘kl_loss’
symmetric (bool, optional) – Either structures are to be assumed symmetric or not. Default value is True.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on relative error (>0)
warmstartT (bool, optional) – Either to perform warmstart of transport plans in the successive
fused gromov-wasserstein transport problems.
verbose (bool, optional) – Print information along iterations.
init_C (array-like, shape (N,N), optional) – Initialization for the barycenters’ structure matrix. If not set
a random init is used.
init_X (array-like, shape (N,d), optional) – Initialization for the barycenters’ features. If not set a
random init is used.
random_state (int or RandomState instance, optional) – Fix the seed for reproducibility
Returns:
X (array-like, shape (N, d)) – Barycenters’ features
C (array-like, shape (N, N)) – Barycenters’ structure matrix
log (dict) – Only returned when log=True. It contains the keys:
\(\mathbf{T}\): list of (N, ns) transport matrices
\((\mathbf{M}_s)_s\): all distance matrices between the feature of the barycenter and the other features \((dist(\mathbf{X}, \mathbf{Y}_s))_s\) shape (N, ns)
Returns the Fused Gromov-Wasserstein transport between \((\mathbf{C_1}, \mathbf{Y_1}, \mathbf{p})\) and \((\mathbf{C_2}, \mathbf{Y_2}, \mathbf{q})\)
with pairwise distance matrix \(\mathbf{M}\) between node feature matrices \(\mathbf{Y_1}\) and \(\mathbf{Y_2}\) (see [24]).
The function solves the following optimization problem using Conditional Gradient:
\(\mathbf{M}\): metric cost matrix between features across domains
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
\(\mathbf{q}\): distribution in the target space
L: loss function to account for the misfit between the similarity and feature matrices
\(\alpha\): trade-off parameter
Note
This function is backend-compatible and will work on arrays
from all compatible backends. But the algorithm uses the C++ CPU backend
which can lead to copy overhead on GPU arrays.
Note
All computations in the conjugate gradient solver are done with
numpy to limit memory overhead.
Parameters:
M (array-like, shape (ns, nt)) – Metric cost matrix between features across domains
C1 (array-like, shape (ns, ns)) – Metric cost matrix representative of the structure in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix representative of the structure in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
q (array-like, shape (nt,), optional) – Distribution in the target space.
If let to its default value None, uniform distribution is taken.
loss_fun (str, optional) – Loss function used for the solver
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
armijo (bool, optional) – If True the step of the line-search is found via an armijo research. Else closed form is used.
If there are convergence issues use False.
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
Returns the Fused Gromov-Wasserstein distance between \((\mathbf{C_1}, \mathbf{Y_1}, \mathbf{p})\) and \((\mathbf{C_2}, \mathbf{Y_2}, \mathbf{q})\)
with pairwise distance matrix \(\mathbf{M}\) between node feature matrices \(\mathbf{Y_1}\) and \(\mathbf{Y_2}\) (see [24]).
The function solves the following optimization problem using Conditional Gradient:
\(\mathbf{M}\): metric cost matrix between features across domains
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
\(\mathbf{q}\): distribution in the target space
L: loss function to account for the misfit between the similarity and feature matrices
\(\alpha\): trade-off parameter
Note that when using backends, this loss function is differentiable wrt the
matrices (C1, C2, M) and weights (p, q) for quadratic loss using the gradients from [38]_.
Note
This function is backend-compatible and will work on arrays
from all compatible backends. But the algorithm uses the C++ CPU backend
which can lead to copy overhead on GPU arrays.
Note
All computations in the conjugate gradient solver are done with
numpy to limit memory overhead.
Parameters:
M (array-like, shape (ns, nt)) – Metric cost matrix between features across domains
C1 (array-like, shape (ns, ns)) – Metric cost matrix representative of the structure in the source space.
C2 (array-like, shape (nt, nt)) – Metric cost matrix representative of the structure in the target space.
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
q (array-like, shape (nt,), optional) – Distribution in the target space.
If let to its default value None, uniform distribution is taken.
loss_fun (str, optional) – Loss function used for the solver.
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
armijo (bool, optional) – If True the step of the line-search is found via an armijo research.
Else closed form is used. If there are convergence issues use False.
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
Infer Fused Gromov-Wasserstein linear dictionary \(\{ (\mathbf{C_{dict}[d]}, \mathbf{Y_{dict}[d]}, \mathbf{q}) \}_{d \in [D]}\) from the list of S attributed structures \(\{ (\mathbf{C_s}, \mathbf{Y_s},\mathbf{p_s}) \}_s\)
nt (int) – Number of samples within each dictionary atoms
alpha (float) – Trade-off parameter of Fused Gromov-Wasserstein
reg (float, optional) – Coefficient of the negative quadratic regularization used to promote sparsity of w. The default is 0.
ps (list of S array-like, shape (ns,), optional) – Distribution in each source space C of Cs. Default is None and corresponds to uniform distibutions.
q (array-like, shape (nt,), optional) – Distribution in the embedding space whose structure will be learned. Default is None and corresponds to uniform distributions.
epochs (int, optional) – Number of epochs used to learn the dictionary. Default is 32.
batch_size (int, optional) – Batch size for each stochastic gradient update of the dictionary. Set to the dataset size if the provided batch_size is higher than the dataset size. Default is 32.
learning_rate_C (float, optional) – Learning rate used for the stochastic gradient descent on Cdict. Default is 1.
learning_rate_Y (float, optional) – Learning rate used for the stochastic gradient descent on Ydict. Default is 1.
Cdict_init (list of D array-like with shape (nt, nt), optional) – Used to initialize the dictionary structures Cdict.
If set to None (Default), the dictionary will be initialized randomly.
Else Cdict must have shape (D, nt, nt) i.e match provided shape features.
Ydict_init (list of D array-like with shape (nt, d), optional) – Used to initialize the dictionary features Ydict.
If set to None, the dictionary features will be initialized randomly.
Else Ydict must have shape (D, nt, d) where d is the features dimension of inputs Ys and also match provided shape features.
projection (str, optional) – If ‘nonnegative’ and/or ‘symmetric’ is in projection, the corresponding projection will be performed at each stochastic update of the dictionary
Else the set of atoms is \(R^{nt * nt}\). Default is ‘nonnegative_symmetric’
log (bool, optional) – If set to True, losses evolution by batches and epochs are tracked. Default is False.
use_adam_optimizer (bool, optional) – If set to True, adam optimizer with default settings is used as adaptative learning rate strategy.
Else perform SGD with fixed learning rate. Default is True.
tol_outer (float, optional) – Solver precision for the BCD algorithm, measured by absolute relative error on consecutive losses. Default is \(10^{-5}\).
tol_inner (float, optional) – Solver precision for the Conjugate Gradient algorithm used to get optimal w at a fixed transport, measured by absolute relative error on consecutive losses. Default is \(10^{-5}\).
max_iter_outer (int, optional) – Maximum number of iterations for the BCD. Default is 20.
max_iter_inner (int, optional) – Maximum number of iterations for the Conjugate Gradient. Default is 200.
verbose (bool, optional) – Print the reconstruction loss every epoch. Default is False.
Returns:
Cdict_best_state (D array-like, shape (D,nt,nt)) – Metric/Graph cost matrices composing the dictionary.
The dictionary leading to the best loss over an epoch is saved and returned.
Ydict_best_state (D array-like, shape (D,nt,d)) – Feature matrices composing the dictionary.
The dictionary leading to the best loss over an epoch is saved and returned.
log (dict) – If use_log is True, contains loss evolutions by batches and epochs.
Returns the Fused Gromov-Wasserstein linear unmixing of \((\mathbf{C},\mathbf{Y},\mathbf{p})\) onto the attributed dictionary atoms \(\{ (\mathbf{C_{dict}[d]},\mathbf{Y_{dict}[d]}, \mathbf{q}) \}_{d \in [D]}\)
\(\mathbf{C}\) is a (ns,ns) pairwise similarity matrix of variable size ns.
\(\mathbf{Y}\) is a (ns,d) features matrix of variable size ns and fixed dimension d.
\(\mathbf{C_{dict}}\) is a (D, nt, nt) tensor of D pairwise similarity matrix of fixed size nt.
\(\mathbf{Y_{dict}}\) is a (D, nt, d) tensor of D features matrix of fixed size nt and fixed dimension d.
\(\mathbf{p}\) is the source distribution corresponding to \(\mathbf{C_s}\)
\(\mathbf{q}\) is the target distribution assigned to every structures in the embedding space.
\(\alpha\) is the trade-off parameter of Fused Gromov-Wasserstein
reg is the regularization coefficient.
The algorithm used for solving the problem is a Block Coordinate Descent as discussed in [38]_, algorithm 6.
Parameters:
C (array-like, shape (ns, ns)) – Metric/Graph cost matrix.
Y (array-like, shape (ns, d)) – Feature matrix.
Cdict (D array-like, shape (D,nt,nt)) – Metric/Graph cost matrices composing the dictionary on which to embed (C,Y).
Ydict (D array-like, shape (D,nt,d)) – Feature matrices composing the dictionary on which to embed (C,Y).
alpha (float,) – Trade-off parameter of Fused Gromov-Wasserstein.
reg (float, optional) – Coefficient of the negative quadratic regularization used to promote sparsity of w. The default is 0.
p (array-like, shape (ns,), optional) – Distribution in the source space C. Default is None and corresponds to uniform distribution.
q (array-like, shape (nt,), optional) – Distribution in the space depicted by the dictionary. Default is None and corresponds to uniform distribution.
tol_outer (float, optional) – Solver precision for the BCD algorithm.
tol_inner (float, optional) – Solver precision for the Conjugate Gradient algorithm used to get optimal w at a fixed transport. Default is \(10^{-5}\).
max_iter_outer (int, optional) – Maximum number of iterations for the BCD. Default is 20.
max_iter_inner (int, optional) – Maximum number of iterations for the Conjugate Gradient. Default is 200.
Returns:
w (array-like, shape (D,)) – fused Gromov-Wasserstein linear unmixing of (C,Y,p) onto the span of the dictionary.
Cembedded (array-like, shape (nt,nt)) – embedded structure of \((\mathbf{C},\mathbf{Y}, \mathbf{p})\) onto the dictionary, \(\sum_d w_d\mathbf{C_{dict}[d]}\).
Yembedded (array-like, shape (nt,d)) – embedded features of \((\mathbf{C},\mathbf{Y}, \mathbf{p})\) onto the dictionary, \(\sum_d w_d\mathbf{Y_{dict}[d]}\).
T (array-like (ns,nt)) – Fused Gromov-Wasserstein transport plan between \((\mathbf{C},\mathbf{p})\) and \((\sum_d w_d\mathbf{C_{dict}[d]}, \sum_d w_d\mathbf{Y_{dict}[d]},\mathbf{q})\).
Cs (list of S array-like of shape (ns, ns)) – Metric cost matrices
ps (list of S array-like of shape (ns,), optional) – Sample weights in the S spaces.
If let to its default value None, uniform distributions are taken.
p (array-like, shape (N,), optional) – Weights in the targeted barycenter.
If let to its default value None, uniform distribution is taken.
lambdas (list of float, optional) – List of the S spaces’ weights.
If let to its default value None, uniform weights are taken.
loss_fun (callable, optional) – tensor-matrix multiplication function based on specific loss function
symmetric (bool, optional.) – Either structures are to be assumed symmetric or not. Default value is True.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
update (callable) – function(\(\mathbf{p}\), lambdas, \(\mathbf{T}\), \(\mathbf{Cs}\)) that updates
\(\mathbf{C}\) according to a specific Kernel with the S \(\mathbf{T}_s\) couplings
calculated at each iteration
max_iter (int, optional) – Max number of iterations
tol (float, optional) – Stop threshold on relative error (>0)
warmstartT (bool, optional) – Either to perform warmstart of transport plans in the successive
fused gromov-wasserstein transport problems.s
verbose (bool, optional) – Print information along iterations.
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
\(\mathbf{q}\): distribution in the target space
L: loss function to account for the misfit between the similarity matrices
Note
This function is backend-compatible and will work on arrays
from all compatible backends. But the algorithm uses the C++ CPU backend
which can lead to copy overhead on GPU arrays.
Note
All computations in the conjugate gradient solver are done with
numpy to limit memory overhead.
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
q (array-like, shape (nt,), optional) – Distribution in the target space.
If let to its default value None, uniform distribution is taken.
loss_fun (str, optional) – loss function used for the solver either ‘square_loss’ or ‘kl_loss’
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
verbose (bool, optional) – Print information along iterations
armijo (bool, optional) – If True the step of the line-search is found via an armijo research. Else closed form is used.
If there are convergence issues use False.
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
max_iter (int, optional) – Max number of iterations
tol_rel (float, optional) – Stop threshold on relative error (>0)
tol_abs (float, optional) – Stop threshold on absolute error (>0)
**kwargs (dict) – parameters can be directly passed to the ot.optim.cg solver
Returns the Gromov-Wasserstein loss \(\mathbf{GW}\) between \((\mathbf{C_1}, \mathbf{p})\) and \((\mathbf{C_2}, \mathbf{q})\).
To recover the Gromov-Wasserstein distance as defined in [13] compute \(d_{GW} = \frac{1}{2} \sqrt{\mathbf{GW}}\).
The function solves the following optimization problem using Conditional Gradient:
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
\(\mathbf{q}\): distribution in the target space
L: loss function to account for the misfit between the similarity
matrices
Note that when using backends, this loss function is differentiable wrt the
matrices (C1, C2) and weights (p, q) for quadratic loss using the gradients from [38]_.
Note
This function is backend-compatible and will work on arrays
from all compatible backends. But the algorithm uses the C++ CPU backend
which can lead to copy overhead on GPU arrays.
Note
All computations in the conjugate gradient solver are done with
numpy to limit memory overhead.
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
q (array-like, shape (nt,), optional) – Distribution in the target space.
If let to its default value None, uniform distribution is taken.
loss_fun (str) – loss function used for the solver either ‘square_loss’ or ‘kl_loss’
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
verbose (bool, optional) – Print information along iterations
armijo (bool, optional) – If True the step of the line-search is found via an armijo research. Else closed form is used.
If there are convergence issues use False.
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
max_iter (int, optional) – Max number of iterations
tol_rel (float, optional) – Stop threshold on relative error (>0)
tol_abs (float, optional) – Stop threshold on absolute error (>0)
**kwargs (dict) – parameters can be directly passed to the ot.optim.cg solver
Returns:
gw_dist (float) – Gromov-Wasserstein distance
log (dict) – convergence information and Coupling matrix
Infer Gromov-Wasserstein linear dictionary \(\{ (\mathbf{C_{dict}[d]}, q) \}_{d \in [D]}\) from the list of structures \(\{ (\mathbf{C_s},\mathbf{p_s}) \}_s\)
nt (int) – Number of samples within each dictionary atoms
reg (float, optional) – Coefficient of the negative quadratic regularization used to promote sparsity of w. The default is 0.
ps (list of S array-like, shape (ns,), optional) – Distribution in each source space C of Cs. Default is None and corresponds to uniform distibutions.
q (array-like, shape (nt,), optional) – Distribution in the embedding space whose structure will be learned. Default is None and corresponds to uniform distributions.
epochs (int, optional) – Number of epochs used to learn the dictionary. Default is 32.
batch_size (int, optional) – Batch size for each stochastic gradient update of the dictionary. Set to the dataset size if the provided batch_size is higher than the dataset size. Default is 32.
learning_rate (float, optional) – Learning rate used for the stochastic gradient descent. Default is 1.
Cdict_init (list of D array-like with shape (nt, nt), optional) – Used to initialize the dictionary.
If set to None (Default), the dictionary will be initialized randomly.
Else Cdict must have shape (D, nt, nt) i.e match provided shape features.
projection (str , optional) – If ‘nonnegative’ and/or ‘symmetric’ is in projection, the corresponding projection will be performed at each stochastic update of the dictionary
Else the set of atoms is \(R^{nt * nt}\). Default is ‘nonnegative_symmetric’
log (bool, optional) – If set to True, losses evolution by batches and epochs are tracked. Default is False.
use_adam_optimizer (bool, optional) – If set to True, adam optimizer with default settings is used as adaptative learning rate strategy.
Else perform SGD with fixed learning rate. Default is True.
tol_outer (float, optional) – Solver precision for the BCD algorithm, measured by absolute relative error on consecutive losses. Default is \(10^{-5}\).
tol_inner (float, optional) – Solver precision for the Conjugate Gradient algorithm used to get optimal w at a fixed transport, measured by absolute relative error on consecutive losses. Default is \(10^{-5}\).
max_iter_outer (int, optional) – Maximum number of iterations for the BCD. Default is 20.
max_iter_inner (int, optional) – Maximum number of iterations for the Conjugate Gradient. Default is 200.
verbose (bool, optional) – Print the reconstruction loss every epoch. Default is False.
Returns:
Cdict_best_state (D array-like, shape (D,nt,nt)) – Metric/Graph cost matrices composing the dictionary.
The dictionary leading to the best loss over an epoch is saved and returned.
log (dict) – If use_log is True, contains loss evolutions by batches and epochs.
Returns the Gromov-Wasserstein linear unmixing of \((\mathbf{C},\mathbf{p})\) onto the dictionary \(\{ (\mathbf{C_{dict}[d]}, \mathbf{q}) \}_{d \in [D]}\).
\(\mathbf{C}\) is the (ns,ns) pairwise similarity matrix.
\(\mathbf{C_{dict}}\) is a (D, nt, nt) tensor of D pairwise similarity matrices of size nt.
\(\mathbf{p}\) and \(\mathbf{q}\) are source and target weights.
reg is the regularization coefficient.
The algorithm used for solving the problem is a Block Coordinate Descent as discussed in [38]_ , algorithm 1.
Parameters:
C (array-like, shape (ns, ns)) – Metric/Graph cost matrix.
Cdict (D array-like, shape (D,nt,nt)) – Metric/Graph cost matrices composing the dictionary on which to embed C.
reg (float, optional.) – Coefficient of the negative quadratic regularization used to promote sparsity of w. Default is 0.
p (array-like, shape (ns,), optional) – Distribution in the source space C. Default is None and corresponds to uniform distribution.
q (array-like, shape (nt,), optional) – Distribution in the space depicted by the dictionary. Default is None and corresponds to uniform distribution.
tol_outer (float, optional) – Solver precision for the BCD algorithm.
tol_inner (float, optional) – Solver precision for the Conjugate Gradient algorithm used to get optimal w at a fixed transport. Default is \(10^{-5}\).
max_iter_outer (int, optional) – Maximum number of iterations for the BCD. Default is 20.
max_iter_inner (int, optional) – Maximum number of iterations for the Conjugate Gradient. Default is 200.
Returns:
w (array-like, shape (D,)) – Gromov-Wasserstein linear unmixing of \((\mathbf{C},\mathbf{p})\) onto the span of the dictionary.
Cembedded (array-like, shape (nt,nt)) – embedded structure of \((\mathbf{C},\mathbf{p})\) onto the dictionary, \(\sum_d w_d\mathbf{C_{dict}[d]}\).
T (array-like (ns, nt)) – Gromov-Wasserstein transport plan between \((\mathbf{C},\mathbf{p})\) and \((\sum_d w_d\mathbf{C_{dict}[d]}, \mathbf{q})\)
ot.gromov.init_matrix(C1, C2, p, q, loss_fun='square_loss', nx=None)[source]
Return loss matrices and tensors for Gromov-Wasserstein fast computation
Returns the value of \(\mathcal{L}(\mathbf{C_1}, \mathbf{C_2}) \otimes \mathbf{T}\) with the
selected loss function as the loss function of Gromov-Wasserstein discrepancy.
The matrices are computed as described in Proposition 1 in [12]
Where :
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{T}\): A coupling between those two spaces
The square-loss function \(L(a, b) = |a - b|^2\) is read as :
Return loss matrices and tensors for semi-relaxed Gromov-Wasserstein fast computation
Returns the value of \(\mathcal{L}(\mathbf{C_1}, \mathbf{C_2}) \otimes \mathbf{T}\) with the
selected loss function as the loss function of semi-relaxed Gromov-Wasserstein discrepancy.
The matrices are computed as described in Proposition 1 in [12]
and adapted to the semi-relaxed problem where the second marginal is not a constant anymore.
Where :
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{T}\): A coupling between those two spaces
The square-loss function \(L(a, b) = |a - b|^2\) is read as :
Returns the gromov-wasserstein transport between \((\mathbf{C_1}, \mathbf{p})\) and \((\mathbf{C_2}, \mathbf{q})\) using a stochastic Frank-Wolfe.
This method has a \(\mathcal{O}(\mathrm{max\_iter} \times PN^2)\) time complexity with P the number of Sinkhorn iterations.
The function solves the following optimization problem:
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
\(\mathbf{q}\): distribution in the target space
L: loss function to account for the misfit between the similarity matrices
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,)) – Distribution in the source space
q (array-like, shape (nt,)) – Distribution in the target space
loss_fun (function: \(\mathbb{R} \times \mathbb{R} \mapsto \mathbb{R}\)) – Loss function used for the distance, the transport plan does not depend on the loss function
alpha (float) – Step of the Frank-Wolfe algorithm, should be between 0 and 1
max_iter (int, optional) – Max number of iterations
threshold_plan (float, optional) – Deleting very small values in the transport plan. If above zero, it violates the marginal constraints.
verbose (bool, optional) – Print information along iterations
log (bool, optional) – Gives the distance estimated and the standard deviation
random_state (int or RandomState instance, optional) – Fix the seed for reproducibility
Returns the gromov-wasserstein transport between \((\mathbf{C_1}, \mathbf{p})\) and \((\mathbf{C_2}, \mathbf{q})\) using a 1-stochastic Frank-Wolfe.
This method has a \(\mathcal{O}(\mathrm{max\_iter} \times N \log(N))\) time complexity by relying on the 1D Optimal Transport solver.
The function solves the following optimization problem:
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
\(\mathbf{q}\): distribution in the target space
L: loss function to account for the misfit between the similarity matrices
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,)) – Distribution in the source space
q (array-like, shape (nt,)) – Distribution in the target space
loss_fun (function: \(\mathbb{R} \times \mathbb{R} \mapsto \mathbb{R}\)) – Loss function used for the distance, the transport plan does not depend on the loss function
nb_samples_grad (int) – Number of samples to approximate the gradient
epsilon (float) – Weight of the Kullback-Leibler regularization
max_iter (int, optional) – Max number of iterations
verbose (bool, optional) – Print information along iterations
log (bool, optional) – Gives the distance estimated and the standard deviation
random_state (int or RandomState instance, optional) – Fix the seed for reproducibility
L is a loss function to account for the misfit between the similarity matrices
Note
This function is backend-compatible and will work on arrays
from all compatible backends. However all the steps in the conditional
gradient are not differentiable.
The algorithm used for solving the problem is conditional gradient as discussed in [48]
Parameters:
M (array-like, shape (ns, nt)) – Metric cost matrix between features across domains
C1 (array-like, shape (ns, ns)) – Metric cost matrix representative of the structure in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix representative of the structure in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
loss_fun (str) – loss function used for the solver either ‘square_loss’ or ‘kl_loss’.
‘kl_loss’ is not implemented yet and will raise an error.
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
L is a loss function to account for the misfit between the similarity matrices
The algorithm used for solving the problem is conditional gradient as
discussed in [48]
Note that when using backends, this loss function is differentiable wrt the
matrices (C1, C2) but not yet for the weights p.
Note
This function is backend-compatible and will work on arrays
from all compatible backends. However all the steps in the conditional
gradient are not differentiable.
Parameters:
M (array-like, shape (ns, nt)) – Metric cost matrix between features across domains
C1 (array-like, shape (ns, ns)) – Metric cost matrix representative of the structure in the source space.
C2 (array-like, shape (nt, nt)) – Metric cost matrix representative of the structure in the target space.
p (array-like, shape (ns,)) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
loss_fun (str, optional) – loss function used for the solver either ‘square_loss’ or ‘kl_loss’.
‘kl_loss’ is not implemented yet and will raise an error.
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
L: loss function to account for the misfit between the similarity matrices
Note
This function is backend-compatible and will work on arrays
from all compatible backends. However all the steps in the conditional
gradient are not differentiable.
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
loss_fun (str) – loss function used for the solver either ‘square_loss’ or ‘kl_loss’.
‘kl_loss’ is not implemented yet and will raise an error.
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
verbose (bool, optional) – Print information along iterations
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
max_iter (int, optional) – Max number of iterations
tol_rel (float, optional) – Stop threshold on relative error (>0)
tol_abs (float, optional) – Stop threshold on absolute error (>0)
**kwargs (dict) – parameters can be directly passed to the ot.optim.cg solver
\(\mathbf{C_1}\): Metric cost matrix in the source space
\(\mathbf{C_2}\): Metric cost matrix in the target space
\(\mathbf{p}\): distribution in the source space
L: loss function to account for the misfit between the similarity
matrices
Note that when using backends, this loss function is differentiable wrt the
matrices (C1, C2) but not yet for the weights p.
Note
This function is backend-compatible and will work on arrays
from all compatible backends. However all the steps in the conditional
gradient are not differentiable.
Parameters:
C1 (array-like, shape (ns, ns)) – Metric cost matrix in the source space
C2 (array-like, shape (nt, nt)) – Metric cost matrix in the target space
p (array-like, shape (ns,), optional) – Distribution in the source space.
If let to its default value None, uniform distribution is taken.
loss_fun (str) – loss function used for the solver either ‘square_loss’ or ‘kl_loss’.
‘kl_loss’ is not implemented yet and will raise an error.
symmetric (bool, optional) – Either C1 and C2 are to be assumed symmetric or not.
If let to its default None value, a symmetry test will be conducted.
Else if set to True (resp. False), C1 and C2 will be assumed symmetric (resp. asymmetric).
verbose (bool, optional) – Print information along iterations
G0 (array-like, shape (ns,nt), optional) – If None the initial transport plan of the solver is pq^T.
Otherwise G0 must satisfy marginal constraints and will be used as initial transport of the solver.
max_iter (int, optional) – Max number of iterations
tol_rel (float, optional) – Stop threshold on relative error (>0)
tol_abs (float, optional) – Stop threshold on absolute error (>0)
**kwargs (dict) – parameters can be directly passed to the ot.optim.cg solver