summaryrefslogtreecommitdiff
path: root/examples/plot_otda_semi_supervised.py
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2018-06-11 12:01:27 +0200
committerRémi Flamary <remi.flamary@gmail.com>2018-06-11 12:01:27 +0200
commitef17fcd2d5e85b986ff21d8039483bdaf03e37da (patch)
tree25cf5915a26273b3e0726494ed4a1405ce1e2786 /examples/plot_otda_semi_supervised.py
parent8046b8c424d7b80f520e212e2bf8de41cb624aab (diff)
parent530dc93a60e9b81fb8d1b44680deea77dacf660b (diff)
Merge branch 'master' into smooth_ot
Diffstat (limited to 'examples/plot_otda_semi_supervised.py')
-rw-r--r--examples/plot_otda_semi_supervised.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/plot_otda_semi_supervised.py b/examples/plot_otda_semi_supervised.py
index 7963aef..8a67720 100644
--- a/examples/plot_otda_semi_supervised.py
+++ b/examples/plot_otda_semi_supervised.py
@@ -29,8 +29,8 @@ import ot
n_samples_source = 150
n_samples_target = 150
-Xs, ys = ot.datasets.get_data_classif('3gauss', n_samples_source)
-Xt, yt = ot.datasets.get_data_classif('3gauss2', n_samples_target)
+Xs, ys = ot.datasets.make_data_classif('3gauss', n_samples_source)
+Xt, yt = ot.datasets.make_data_classif('3gauss2', n_samples_target)
##############################################################################