Skip to content

Commit 9c7d9c7

Browse files
Circle CICircle CI
Circle CI
authored and
Circle CI
committed
CircleCI update of dev docs (2963).
1 parent e2c43a3 commit 9c7d9c7

File tree

268 files changed

+732656
-733042
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

268 files changed

+732656
-733042
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
150 Bytes
621 Bytes
-696 Bytes
-706 Bytes
-1.03 KB
-32 Bytes
491 Bytes

master/_modules/ot/unbalanced/_sinkhorn.html

+20-4
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,12 @@ <h1>Source code for ot.unbalanced._sinkhorn</h1><div class="highlight"><pre>
139139
<span class="sd"> - KL is the Kullback-Leibler divergence</span>
140140

141141
<span class="sd"> The algorithm used for solving the problem is the generalized</span>
142-
<span class="sd"> Sinkhorn-Knopp matrix scaling algorithm as proposed in :ref:`[10, 25] &lt;references-sinkhorn-unbalanced&gt;`</span>
142+
<span class="sd"> Sinkhorn-Knopp matrix scaling algorithm as proposed in :ref:`[10, 25]</span>
143+
<span class="sd"> &lt;references-sinkhorn-unbalanced&gt;`</span>
144+
145+
<span class="sd"> .. warning::</span>
146+
<span class="sd"> Starting from version 0.9.5, the default value has been changed to `reg_type=&#39;kl&#39;` instead of `reg_type=&#39;entropy&#39;`. This makes the function more consistent with the literature</span>
147+
<span class="sd"> and the other solvers. If you want to use the entropy regularization, please set `reg_type=&#39;entropy&#39;` explicitly.</span>
143148

144149

145150
<span class="sd"> Parameters</span>
@@ -175,7 +180,7 @@ <h1>Source code for ot.unbalanced._sinkhorn</h1><div class="highlight"><pre>
175180
<span class="sd"> + Negative entropy: &#39;entropy&#39;:</span>
176181
<span class="sd"> :math:`\Omega(\gamma) = \sum_{i,j} \gamma_{i,j} \log(\gamma_{i,j}) - \sum_{i,j} \gamma_{i,j}`.</span>
177182
<span class="sd"> This is equivalent (up to a constant) to :math:`\Omega(\gamma) = \text{KL}(\gamma, 1_{dim_a} 1_{dim_b}^T)`.</span>
178-
<span class="sd"> + Kullback-Leibler divergence: &#39;kl&#39;:</span>
183+
<span class="sd"> + Kullback-Leibler divergence (default): &#39;kl&#39;:</span>
179184
<span class="sd"> :math:`\Omega(\gamma) = \text{KL}(\gamma, \mathbf{a} \mathbf{b}^T)`.</span>
180185
<span class="sd"> c : array-like (dim_a, dim_b), optional (default=None)</span>
181186
<span class="sd"> Reference measure for the regularization.</span>
@@ -368,8 +373,12 @@ <h1>Source code for ot.unbalanced._sinkhorn</h1><div class="highlight"><pre>
368373
<span class="sd"> - KL is the Kullback-Leibler divergence</span>
369374

370375
<span class="sd"> The algorithm used for solving the problem is the generalized</span>
371-
<span class="sd"> Sinkhorn-Knopp matrix scaling algorithm as proposed in :ref:`[10, 25] &lt;references-sinkhorn-unbalanced2&gt;`</span>
376+
<span class="sd"> Sinkhorn-Knopp matrix scaling algorithm as proposed in :ref:`[10, 25]</span>
377+
<span class="sd"> &lt;references-sinkhorn-unbalanced2&gt;`</span>
372378

379+
<span class="sd"> .. warning::</span>
380+
<span class="sd"> Starting from version 0.9.5, the default value has been changed to `reg_type=&#39;kl&#39;` instead of `reg_type=&#39;entropy&#39;`. This makes the function more consistent with the literature</span>
381+
<span class="sd"> and the other solvers. If you want to use the entropy regularization, please set `reg_type=&#39;entropy&#39;` explicitly.</span>
373382

374383
<span class="sd"> Parameters</span>
375384
<span class="sd"> ----------</span>
@@ -678,6 +687,10 @@ <h1>Source code for ot.unbalanced._sinkhorn</h1><div class="highlight"><pre>
678687

679688
<span class="sd"> The algorithm used for solving the problem is the generalized Sinkhorn-Knopp matrix scaling algorithm as proposed in :ref:`[10, 25] &lt;references-sinkhorn-knopp-unbalanced&gt;`</span>
680689

690+
<span class="sd"> .. warning::</span>
691+
<span class="sd"> Starting from version 0.9.5, the default value has been changed to `reg_type=&#39;kl&#39;` instead of `reg_type=&#39;entropy&#39;`. This makes the function more consistent with the literature</span>
692+
<span class="sd"> and the other solvers. If you want to use the entropy regularization, please set `reg_type=&#39;entropy&#39;` explicitly.</span>
693+
681694

682695
<span class="sd"> Parameters</span>
683696
<span class="sd"> ----------</span>
@@ -988,6 +1001,10 @@ <h1>Source code for ot.unbalanced._sinkhorn</h1><div class="highlight"><pre>
9881001
<span class="sd"> log : bool, optional</span>
9891002
<span class="sd"> record `log` if `True`</span>
9901003

1004+
<span class="sd"> .. warning::</span>
1005+
<span class="sd"> Starting from version 0.9.5, the default value has been changed to `reg_type=&#39;kl&#39;` instead of `reg_type=&#39;entropy&#39;`. This makes the function more consistent with the literature</span>
1006+
<span class="sd"> and the other solvers. If you want to use the entropy regularization, please set `reg_type=&#39;entropy&#39;` explicitly.</span>
1007+
9911008

9921009
<span class="sd"> Returns</span>
9931010
<span class="sd"> -------</span>
@@ -1228,7 +1245,6 @@ <h1>Source code for ot.unbalanced._sinkhorn</h1><div class="highlight"><pre>
12281245

12291246
<span class="sd"> The algorithm used for solving the problem is the translation invariant Sinkhorn algorithm as proposed in :ref:`[73] &lt;references-sinkhorn-unbalanced-translation-invariant&gt;`</span>
12301247

1231-
12321248
<span class="sd"> Parameters</span>
12331249
<span class="sd"> ----------</span>
12341250
<span class="sd"> a : array-like (dim_a,)</span>

master/_sources/auto_examples/backends/plot_Sinkhorn_gradients.rst.txt

+1-1

master/_sources/auto_examples/backends/plot_dual_ot_pytorch.rst.txt

+40-40

master/_sources/auto_examples/backends/plot_optim_gromov_pytorch.rst.txt

+2-2

0 commit comments

Comments
 (0)