Skip to content

Commit 251af8e

Browse files
committed
add author to all examples
1 parent 0097017 commit 251af8e

11 files changed

+44
-7
lines changed

examples/plot_OTDA_2D.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
77
"""
88

9+
# Author: Remi Flamary <[email protected]>
10+
#
11+
# License: MIT License
12+
913
import numpy as np
1014
import matplotlib.pylab as pl
1115
import ot

examples/plot_OTDA_classes.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
77
"""
88

9+
# Author: Remi Flamary <[email protected]>
10+
#
11+
# License: MIT License
12+
913
import matplotlib.pylab as pl
1014
import ot
1115

examples/plot_OTDA_color_images.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
SIAM Journal on Imaging Sciences, 7(3), 1853-1882.
1010
"""
1111

12+
# Author: Remi Flamary <[email protected]>
13+
#
14+
# License: MIT License
15+
1216
import numpy as np
1317
from scipy import ndimage
1418
import matplotlib.pylab as pl

examples/plot_OTDA_mapping.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
Neural Information Processing Systems (NIPS), 2016.
1010
"""
1111

12+
# Author: Remi Flamary <[email protected]>
13+
#
14+
# License: MIT License
15+
1216
import numpy as np
1317
import matplotlib.pylab as pl
1418
import ot

examples/plot_OTDA_mapping_color_images.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
1212
"""
1313

14+
# Author: Remi Flamary <[email protected]>
15+
#
16+
# License: MIT License
17+
1418
import numpy as np
1519
from scipy import ndimage
1620
import matplotlib.pylab as pl

examples/plot_OT_1D.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@
44
1D optimal transport
55
====================
66
7-
@author: rflamary
87
"""
98

9+
# Author: Remi Flamary <[email protected]>
10+
#
11+
# License: MIT License
12+
1013
import numpy as np
1114
import matplotlib.pylab as pl
1215
import ot

examples/plot_OT_2D_samples.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@
44
2D Optimal transport between empirical distributions
55
====================================================
66
7-
@author: rflamary
87
"""
98

9+
# Author: Remi Flamary <[email protected]>
10+
#
11+
# License: MIT License
12+
1013
import numpy as np
1114
import matplotlib.pylab as pl
1215
import ot

examples/plot_OT_L1_vs_L2.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@
88
https://arxiv.org/pdf/1706.07650.pdf
99
1010
11-
@author: rflamary
1211
"""
1312

13+
# Author: Remi Flamary <[email protected]>
14+
#
15+
# License: MIT License
16+
1417
import numpy as np
1518
import matplotlib.pylab as pl
1619
import ot

examples/plot_WDA.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@
44
Wasserstein Discriminant Analysis
55
=================================
66
7-
@author: rflamary
87
"""
98

9+
# Author: Remi Flamary <[email protected]>
10+
#
11+
# License: MIT License
12+
1013
import numpy as np
1114
import matplotlib.pylab as pl
1215

examples/plot_barycenter_1D.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
1D Wasserstein barycenter demo
55
==============================
66
7-
8-
@author: rflamary
97
"""
108

9+
# Author: Remi Flamary <[email protected]>
10+
#
11+
# License: MIT License
12+
1113
import numpy as np
1214
import matplotlib.pylab as pl
1315
import ot

0 commit comments

Comments
 (0)