.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/others/plot_stochastic.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_others_plot_stochastic.py: =================== Stochastic examples =================== This example is designed to show how to use the stochastic optimization algorithms for discrete and semi-continuous measures from the POT library. [18] Genevay, A., Cuturi, M., Peyré, G. & Bach, F. Stochastic Optimization for Large-scale Optimal Transport. Advances in Neural Information Processing Systems (2016). [19] Seguy, V., Bhushan Damodaran, B., Flamary, R., Courty, N., Rolet, A. & Blondel, M. Large-scale Optimal Transport and Mapping Estimation. International Conference on Learning Representation (2018) .. GENERATED FROM PYTHON SOURCE LINES 18-29 .. code-block:: Python # Author: Kilian Fatras # # License: MIT License import matplotlib.pylab as pl import numpy as np import ot import ot.plot .. GENERATED FROM PYTHON SOURCE LINES 30-38 Compute the Transportation Matrix for the Semi-Dual Problem ----------------------------------------------------------- Discrete case ````````````` Sample two discrete measures for the discrete case and compute their cost matrix c. .. GENERATED FROM PYTHON SOURCE LINES 38-52 .. code-block:: Python n_source = 7 n_target = 4 reg = 1 numItermax = 1000 a = ot.utils.unif(n_source) b = ot.utils.unif(n_target) rng = np.random.RandomState(0) X_source = rng.randn(n_source, 2) Y_target = rng.randn(n_target, 2) M = ot.dist(X_source, Y_target) .. GENERATED FROM PYTHON SOURCE LINES 53-54 Call the "SAG" method to find the transportation matrix in the discrete case .. GENERATED FROM PYTHON SOURCE LINES 54-60 .. code-block:: Python method = "SAG" sag_pi = ot.stochastic.solve_semi_dual_entropic(a, b, M, reg, method, numItermax) print(sag_pi) .. rst-class:: sphx-glr-script-out .. code-block:: none [[2.55553509e-02 9.96395660e-02 1.76579142e-02 4.31178196e-06] [1.21640234e-01 1.25357448e-02 1.30225078e-03 7.37891338e-03] [3.56123975e-03 7.61451746e-02 6.31505947e-02 1.33831456e-07] [2.61515202e-02 3.34246014e-02 8.28734709e-02 4.07550428e-04] [9.85500870e-03 7.52288517e-04 1.08262628e-02 1.21423583e-01] [2.16904253e-02 9.03825797e-04 1.87178503e-03 1.18391107e-01] [4.15462212e-02 2.65987989e-02 7.23177216e-02 2.39440107e-03]] .. GENERATED FROM PYTHON SOURCE LINES 61-67 Semi-Continuous Case ```````````````````` Sample one general measure a, one discrete measures b for the semicontinuous case, the points where source and target measures are defined and compute the cost matrix. .. GENERATED FROM PYTHON SOURCE LINES 67-82 .. code-block:: Python n_source = 7 n_target = 4 reg = 1 numItermax = 1000 log = True a = ot.utils.unif(n_source) b = ot.utils.unif(n_target) rng = np.random.RandomState(0) X_source = rng.randn(n_source, 2) Y_target = rng.randn(n_target, 2) M = ot.dist(X_source, Y_target) .. GENERATED FROM PYTHON SOURCE LINES 83-85 Call the "ASGD" method to find the transportation matrix in the semicontinuous case. .. GENERATED FROM PYTHON SOURCE LINES 85-92 .. code-block:: Python method = "ASGD" asgd_pi, log_asgd = ot.stochastic.solve_semi_dual_entropic(a, b, M, reg, method, numItermax, log=log) print(log_asgd['alpha'], log_asgd['beta']) print(asgd_pi) .. rst-class:: sphx-glr-script-out .. code-block:: none [3.87919564 7.64972912 3.90370867 2.65425719 1.46885467 3.30171991 2.77560865] [-2.50927934 -2.40235686 -0.91006054 5.82169674] [[2.44871332e-02 1.00795848e-01 1.75697554e-02 4.40659699e-06] [1.20593540e-01 1.31205385e-02 1.34063837e-03 7.80242597e-03] [3.40238837e-03 7.68032820e-02 6.26513361e-02 1.36373920e-07] [2.52546195e-02 3.40772739e-02 8.31054753e-02 4.19774150e-04] [9.29902872e-03 7.49410422e-04 1.06078986e-02 1.22200805e-01] [2.05396464e-02 9.03575289e-04 1.84056467e-03 1.19573357e-01] [4.02994053e-02 2.72385417e-02 7.28420336e-02 2.47716225e-03]] .. GENERATED FROM PYTHON SOURCE LINES 93-94 Compare the results with the Sinkhorn algorithm .. GENERATED FROM PYTHON SOURCE LINES 94-99 .. code-block:: Python sinkhorn_pi = ot.sinkhorn(a, b, M, reg) print(sinkhorn_pi) .. rst-class:: sphx-glr-script-out .. code-block:: none [[2.55553508e-02 9.96395661e-02 1.76579142e-02 4.31178193e-06] [1.21640234e-01 1.25357448e-02 1.30225079e-03 7.37891333e-03] [3.56123974e-03 7.61451746e-02 6.31505947e-02 1.33831455e-07] [2.61515201e-02 3.34246014e-02 8.28734709e-02 4.07550425e-04] [9.85500876e-03 7.52288523e-04 1.08262629e-02 1.21423583e-01] [2.16904255e-02 9.03825804e-04 1.87178504e-03 1.18391107e-01] [4.15462212e-02 2.65987989e-02 7.23177217e-02 2.39440105e-03]] .. GENERATED FROM PYTHON SOURCE LINES 100-104 Plot Transportation Matrices ```````````````````````````` For SAG .. GENERATED FROM PYTHON SOURCE LINES 104-110 .. code-block:: Python pl.figure(4, figsize=(5, 5)) ot.plot.plot1D_mat(a, b, sag_pi, 'semi-dual : OT matrix SAG') pl.show() .. image-sg:: /auto_examples/others/images/sphx_glr_plot_stochastic_001.png :alt: semi-dual : OT matrix SAG :srcset: /auto_examples/others/images/sphx_glr_plot_stochastic_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 111-112 For ASGD .. GENERATED FROM PYTHON SOURCE LINES 112-118 .. code-block:: Python pl.figure(4, figsize=(5, 5)) ot.plot.plot1D_mat(a, b, asgd_pi, 'semi-dual : OT matrix ASGD') pl.show() .. image-sg:: /auto_examples/others/images/sphx_glr_plot_stochastic_002.png :alt: semi-dual : OT matrix ASGD :srcset: /auto_examples/others/images/sphx_glr_plot_stochastic_002.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 119-120 For Sinkhorn .. GENERATED FROM PYTHON SOURCE LINES 120-126 .. code-block:: Python pl.figure(4, figsize=(5, 5)) ot.plot.plot1D_mat(a, b, sinkhorn_pi, 'OT matrix Sinkhorn') pl.show() .. image-sg:: /auto_examples/others/images/sphx_glr_plot_stochastic_003.png :alt: OT matrix Sinkhorn :srcset: /auto_examples/others/images/sphx_glr_plot_stochastic_003.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 127-135 Compute the Transportation Matrix for the Dual Problem ------------------------------------------------------ Semi-continuous case ```````````````````` Sample one general measure a, one discrete measures b for the semi-continuous case and compute the cost matrix c. .. GENERATED FROM PYTHON SOURCE LINES 135-152 .. code-block:: Python n_source = 7 n_target = 4 reg = 1 numItermax = 100000 lr = 0.1 batch_size = 3 log = True a = ot.utils.unif(n_source) b = ot.utils.unif(n_target) rng = np.random.RandomState(0) X_source = rng.randn(n_source, 2) Y_target = rng.randn(n_target, 2) M = ot.dist(X_source, Y_target) .. GENERATED FROM PYTHON SOURCE LINES 153-155 Call the "SGD" dual method to find the transportation matrix in the semi-continuous case .. GENERATED FROM PYTHON SOURCE LINES 156-163 .. code-block:: Python sgd_dual_pi, log_sgd = ot.stochastic.solve_dual_entropic(a, b, M, reg, batch_size, numItermax, lr, log=log) print(log_sgd['alpha'], log_sgd['beta']) print(sgd_dual_pi) .. rst-class:: sphx-glr-script-out .. code-block:: none [0.92075753 2.80864372 1.07370578 0.0179414 0.60239916 1.8141425 0.11122763] [0.346688 0.47228889 1.57636303 4.9534778 ] [[2.21021974e-02 9.26940978e-02 1.09590373e-02 9.59858662e-08] [1.65652588e-02 1.83627521e-03 1.27260904e-04 2.58648690e-05] [3.49188637e-03 8.03096858e-02 4.44340331e-02 3.37764488e-09] [3.14582303e-02 4.32484188e-02 7.15372556e-02 1.26187284e-05] [6.79941580e-02 5.58297483e-03 5.36009581e-02 2.15632652e-02] [8.07006729e-02 3.61709962e-03 4.99740394e-03 1.13377026e-02] [4.88094057e-02 3.36124884e-02 6.09671824e-02 7.24045368e-05]] .. GENERATED FROM PYTHON SOURCE LINES 164-168 Compare the results with the Sinkhorn algorithm ``````````````````````````````````````````````` Call the Sinkhorn algorithm from POT .. GENERATED FROM PYTHON SOURCE LINES 169-173 .. code-block:: Python sinkhorn_pi = ot.sinkhorn(a, b, M, reg) print(sinkhorn_pi) .. rst-class:: sphx-glr-script-out .. code-block:: none [[2.55553508e-02 9.96395661e-02 1.76579142e-02 4.31178193e-06] [1.21640234e-01 1.25357448e-02 1.30225079e-03 7.37891333e-03] [3.56123974e-03 7.61451746e-02 6.31505947e-02 1.33831455e-07] [2.61515201e-02 3.34246014e-02 8.28734709e-02 4.07550425e-04] [9.85500876e-03 7.52288523e-04 1.08262629e-02 1.21423583e-01] [2.16904255e-02 9.03825804e-04 1.87178504e-03 1.18391107e-01] [4.15462212e-02 2.65987989e-02 7.23177217e-02 2.39440105e-03]] .. GENERATED FROM PYTHON SOURCE LINES 174-178 Plot Transportation Matrices ```````````````````````````` For SGD .. GENERATED FROM PYTHON SOURCE LINES 178-184 .. code-block:: Python pl.figure(4, figsize=(5, 5)) ot.plot.plot1D_mat(a, b, sgd_dual_pi, 'dual : OT matrix SGD') pl.show() .. image-sg:: /auto_examples/others/images/sphx_glr_plot_stochastic_004.png :alt: dual : OT matrix SGD :srcset: /auto_examples/others/images/sphx_glr_plot_stochastic_004.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 185-186 For Sinkhorn .. GENERATED FROM PYTHON SOURCE LINES 186-190 .. code-block:: Python pl.figure(4, figsize=(5, 5)) ot.plot.plot1D_mat(a, b, sinkhorn_pi, 'OT matrix Sinkhorn') pl.show() .. image-sg:: /auto_examples/others/images/sphx_glr_plot_stochastic_005.png :alt: OT matrix Sinkhorn :srcset: /auto_examples/others/images/sphx_glr_plot_stochastic_005.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 7.306 seconds) .. _sphx_glr_download_auto_examples_others_plot_stochastic.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_stochastic.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_stochastic.py ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_