summaryrefslogtreecommitdiff
path: root/ot/backend.py
diff options
context:
space:
mode:
authorOleksii Kachaiev <kachayev@gmail.com>2023-05-11 08:23:06 +0200
committerGitHub <noreply@github.com>2023-05-11 08:23:06 +0200
commit5faa4fbdb1a64351a42d31dd6f54f0402c29c405 (patch)
treead851bc53df627418d843d36168657a77852b97a /ot/backend.py
parent8cc8dd2e8e13022b03bcd013becc08e7e18c404a (diff)
[DOC] Fix references to JAX and numpy functions (#475)
* Fix ref to JAX * Fix references to numpy.random.* * Typo in CONTRIBUTING * Removed :any: reference from func parameters * Make markup of params consistent with other docstrings * Mentioned latest open PR in RELEASES * Fix See Also references for ot.factored --------- Co-authored-by: RĂ©mi Flamary <remi.flamary@gmail.com>
Diffstat (limited to 'ot/backend.py')
-rw-r--r--ot/backend.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ot/backend.py b/ot/backend.py
index 9aa14e6..33c323d 100644
--- a/ot/backend.py
+++ b/ot/backend.py
@@ -680,7 +680,7 @@ class Backend():
This function follows the api from :any:`numpy.random.seed`
- See: https://numpy.org/doc/stable/reference/generated/numpy.random.seed.html
+ See: https://numpy.org/doc/stable/reference/random/generated/numpy.random.seed.html
"""
raise NotImplementedError()
@@ -690,7 +690,7 @@ class Backend():
This function follows the api from :any:`numpy.random.rand`
- See: https://numpy.org/doc/stable/reference/generated/numpy.random.rand.html
+ See: https://numpy.org/doc/stable/reference/random/generated/numpy.random.rand.html
"""
raise NotImplementedError()
@@ -700,7 +700,7 @@ class Backend():
This function follows the api from :any:`numpy.random.rand`
- See: https://numpy.org/doc/stable/reference/generated/numpy.random.rand.html
+ See: https://numpy.org/doc/stable/reference/random/generated/numpy.random.rand.html
"""
raise NotImplementedError()