summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorKilian Fatras <kilianfatras@dhcp-206-12-53-99.eduroam.wireless.ubc.ca>2018-06-15 19:15:48 -0700
committerKilian Fatras <kilianfatras@dhcp-206-12-53-99.eduroam.wireless.ubc.ca>2018-06-15 19:15:48 -0700
commit18f9242b9575e7551d5e30b66cfbaaac85e0022a (patch)
tree9ec0fb120e8e4ae3ebbcc0e70e4ab5a56b944cf8 /examples
parente2d06ef4e901e0c1e9119cdbd79b9c453c1af452 (diff)
PEP8
Diffstat (limited to 'examples')
-rw-r--r--examples/plot_stochastic.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/plot_stochastic.py b/examples/plot_stochastic.py
index 0afceeb..9071ddb 100644
--- a/examples/plot_stochastic.py
+++ b/examples/plot_stochastic.py
@@ -53,7 +53,7 @@ M = ot.dist(X_source, Y_target)
method = "SAG"
sag_pi = ot.stochastic.transportation_matrix_entropic(a, b, M, reg, method,
- numItermax, lr)
+ numItermax, lr)
print(sag_pi)
#############################################################################
@@ -90,7 +90,7 @@ M = ot.dist(X_source, Y_target)
method = "ASGD"
asgd_pi = ot.stochastic.transportation_matrix_entropic(a, b, M, reg, method,
- numItermax, lr)
+ numItermax, lr)
print(asgd_pi)
#############################################################################