From e2d06ef4e901e0c1e9119cdbd79b9c453c1af452 Mon Sep 17 00:00:00 2001 From: Kilian Fatras Date: Fri, 15 Jun 2018 19:04:38 -0700 Subject: add problems solved in doc --- examples/plot_stochastic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/plot_stochastic.py b/examples/plot_stochastic.py index 9071ddb..0afceeb 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) ############################################################################# -- cgit v1.2.3