summaryrefslogtreecommitdiff
path: root/ot/datasets.py
diff options
context:
space:
mode:
authorRĂ©mi Flamary <remi.flamary@gmail.com>2018-10-03 08:38:11 +0200
committerGitHub <noreply@github.com>2018-10-03 08:38:11 +0200
commitfeaecbe2965fa22cdf964c2e869fe56d6ce392e9 (patch)
treee591f016a12b00c17a065b4e5881b0d5c24135fd /ot/datasets.py
parent8f6c45534dcdd6e8f80a31205be28481fc79c533 (diff)
parent27f0a9fe625f6fa8123e0e7364a4c0c0e10d5702 (diff)
Merge pull request #63 from rflamary/prV0.5
[MRG] Release 0.5
Diffstat (limited to 'ot/datasets.py')
-rw-r--r--ot/datasets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ot/datasets.py b/ot/datasets.py
index 362a89b..e76e75d 100644
--- a/ot/datasets.py
+++ b/ot/datasets.py
@@ -38,9 +38,9 @@ def make_1D_gauss(n, m, s):
@deprecated()
-def get_1D_gauss(n, m, sigma, random_state=None):
+def get_1D_gauss(n, m, sigma):
""" Deprecated see make_1D_gauss """
- return make_1D_gauss(n, m, sigma, random_state=None)
+ return make_1D_gauss(n, m, sigma)
def make_2D_samples_gauss(n, m, sigma, random_state=None):