summaryrefslogtreecommitdiff
path: root/docs/source/auto_examples/plot_compute_emd.rst
blob: 27bca2c20c5ddd937f01e6cb231bc56edd04ab8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
.. _sphx_glr_auto_examples_plot_compute_emd.py:


=================
Plot multiple EMD
=================

Shows how to compute multiple EMD and Sinkhorn with two differnt
ground metrics and plot their values for diffeent distributions.





.. code-block:: python


    # Author: Remi Flamary <remi.flamary@unice.fr>
    #
    # License: MIT License

    import numpy as np
    import matplotlib.pylab as pl
    import ot
    from ot.datasets import make_1D_gauss as gauss








Generate data
-------------



.. code-block:: python


    #%% parameters

    n = 100  # nb bins
    n_target = 50  # nb target distributions


    # bin positions
    x = np.arange(n, dtype=np.float64)

    lst_m = np.linspace(20, 90, n_target)

    # Gaussian distributions
    a = gauss(n, m=20, s=5)  # m= mean, s= std

    B = np.zeros((n, n_target))

    for i, m in enumerate(lst_m):
        B[:, i] = gauss(n, m=m, s=5)

    # loss matrix and normalization
    M = ot.dist(x.reshape((n, 1)), x.reshape((n, 1)), 'euclidean')
    M /= M.max()
    M2 = ot.dist(x.reshape((n, 1)), x.reshape((n, 1)), 'sqeuclidean')
    M2 /= M2.max()







Plot data
---------



.. code-block:: python


    #%% plot the distributions

    pl.figure(1)
    pl.subplot(2, 1, 1)
    pl.plot(x, a, 'b', label='Source distribution')
    pl.title('Source distribution')
    pl.subplot(2, 1, 2)
    pl.plot(x, B, label='Target distributions')
    pl.title('Target distributions')
    pl.tight_layout()





.. image:: /auto_examples/images/sphx_glr_plot_compute_emd_001.png
    :align: center




Compute EMD for the different losses
------------------------------------



.. code-block:: python


    #%% Compute and plot distributions and loss matrix

    d_emd = ot.emd2(a, B, M)  # direct computation of EMD
    d_emd2 = ot.emd2(a, B, M2)  # direct computation of EMD with loss M2


    pl.figure(2)
    pl.plot(d_emd, label='Euclidean EMD')
    pl.plot(d_emd2, label='Squared Euclidean EMD')
    pl.title('EMD distances')
    pl.legend()




.. image:: /auto_examples/images/sphx_glr_plot_compute_emd_003.png
    :align: center




Compute Sinkhorn for the different losses
-----------------------------------------



.. code-block:: python


    #%%
    reg = 1e-2
    d_sinkhorn = ot.sinkhorn2(a, B, M, reg)
    d_sinkhorn2 = ot.sinkhorn2(a, B, M2, reg)

    pl.figure(2)
    pl.clf()
    pl.plot(d_emd, label='Euclidean EMD')
    pl.plot(d_emd2, label='Squared Euclidean EMD')
    pl.plot(d_sinkhorn, '+', label='Euclidean Sinkhorn')
    pl.plot(d_sinkhorn2, '+', label='Squared Euclidean Sinkhorn')
    pl.title('EMD distances')
    pl.legend()

    pl.show()



.. image:: /auto_examples/images/sphx_glr_plot_compute_emd_004.png
    :align: center




**Total running time of the script:** ( 0 minutes  0.446 seconds)



.. only :: html

 .. container:: sphx-glr-footer


  .. container:: sphx-glr-download

     :download:`Download Python source code: plot_compute_emd.py <plot_compute_emd.py>`



  .. container:: sphx-glr-download

     :download:`Download Jupyter notebook: plot_compute_emd.ipynb <plot_compute_emd.ipynb>`


.. only:: html

 .. rst-class:: sphx-glr-signature

    `Gallery generated by Sphinx-Gallery <https://sphinx-gallery.readthedocs.io>`_