@@ -217,8 +217,6 @@ More details about the algorithm used is given in the following note.
217217 choose entropic/Kullbach Leibler regularization.
218218
219219
220-
221-
222220Recently [23 ]_ introduced the sinkhorn divergence that build from entropic
223221regularization to compute fast and differentiable geometric divergence between
224222empirical distributions. Note that we provide a function that compute directly
@@ -417,7 +415,27 @@ operators. We provide an implementation of this algorithm in function
417415
418416
419417Barycenters with free support
420- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
418+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
419+
420+ Estimating the Wassresein barycenter with free support but fixed weights
421+ corresponds to solving the following optimization problem:
422+
423+ .. math ::
424+ \min _\{ x_i\} \quad \sum _{k} w_kW(\mu ,\mu _k)
425+
426+ s.t. \quad \mu =\sum _{i=1 }^n a_i\delta _{x_i}
427+
428+ WE provide an alternating solver based on [20 ]_ in
429+ :any: `ot.lp.free_support_barycenter `. This function minimize the problem and
430+ return an optimal support :math: `\{ x_i\}` for uniform or given weights
431+ :math: `a`.
432+
433+ .. hint ::
434+
435+ Example of the fee support barycenter estimation is available
436+ in the following example:
437+
438+ - :any: `auto_examples/plot_free_support_barycenter `
421439
422440
423441
@@ -438,7 +456,7 @@ Gromov-Wasserstein
438456
439457
440458GPU acceleration
441- ----------------
459+ ^^^^^^^^^^^^^^^^
442460
443461We provide several implementation of our OT solvers in :any: `ot.gpu `. Those
444462implementation use the :code: `cupy ` toolbox.
0 commit comments