summaryrefslogtreecommitdiff
path: root/docs
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 /docs
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 'docs')
-rw-r--r--docs/source/conf.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py
index b7a9e35..e88804b 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -348,10 +348,11 @@ autodoc_default_options = {'autosummary': True,
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'python': ('https://docs.python.org/3', None),
- 'numpy': ('http://docs.scipy.org/doc/numpy/', None),
+ 'numpy': ('https://numpy.org/doc/stable/', None),
'scipy': ('http://docs.scipy.org/doc/scipy/reference/', None),
'matplotlib': ('http://matplotlib.org/', None),
- 'torch': ('https://pytorch.org/docs/stable/', None)}
+ 'torch': ('https://pytorch.org/docs/stable/', None),
+ 'jax': ('https://jax.readthedocs.io/en/latest/', None)}
sphinx_gallery_conf = {
'examples_dirs': ['../../examples', '../../examples/da'],