summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorVivien Seguy <vivienseguy@h40.57.229.10.1016746.vlan.kuins.net>2018-07-09 16:58:00 +0900
committerVivien Seguy <vivienseguy@h40.57.229.10.1016746.vlan.kuins.net>2018-07-09 16:58:00 +0900
commit08e5c0a91bc9b4afcd375109c08a14bcb0b1bd51 (patch)
treefb9f81a6d8f0b8c6134157a5833cd3db3ea044ce /examples
parent46712790c1276f1ecb3496362a8117e153782ede (diff)
add test free support barycenter algorithm + cleaning
Diffstat (limited to 'examples')
-rw-r--r--examples/plot_free_support_barycenter.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/plot_free_support_barycenter.py b/examples/plot_free_support_barycenter.py
index b2e62c8..b6efc59 100644
--- a/examples/plot_free_support_barycenter.py
+++ b/examples/plot_free_support_barycenter.py
@@ -48,9 +48,9 @@ for i in range(N):
# Compute free support barycenter
# -------------
-k = 10 # number of Diracs of the barycenter
-X_init = np.random.normal(0., 1., (k, d)) # initial Dirac locations
-b = np.ones((k,)) / k # weights of the barycenter (it will not be optimized, only the locations are optimized)
+k = 10 # number of Diracs of the barycenter
+X_init = np.random.normal(0., 1., (k, d)) # initial Dirac locations
+b = np.ones((k,)) / k # weights of the barycenter (it will not be optimized, only the locations are optimized)
X = ot.lp.free_support_barycenter(measures_locations, measures_weights, X_init, b)