summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRĂ©mi Flamary <remi.flamary@gmail.com>2021-06-08 22:32:18 +0200
committerGitHub <noreply@github.com>2021-06-08 22:32:18 +0200
commit982510eb5085a0edd7a00fb96a308854957d32bf (patch)
tree4f511d22b3b0997b44b2ed90a606c61abfff9f4e /docs
parent221e04b87ca48926c961051fc2bdac8e72aa32ad (diff)
[MRG] Update example GAN to avoid the 10 minute CircleCI limit (#258)
* shortened example GAN * pep8 and typo * awesome animation * small eror pep8 * add animation to doc * better timing animation * tune step
Diffstat (limited to 'docs')
-rw-r--r--docs/source/conf.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 3a11798..9b5a719 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -337,7 +337,8 @@ texinfo_documents = [
intersphinx_mapping = {'python': ('https://docs.python.org/3', None),
'numpy': ('http://docs.scipy.org/doc/numpy/', None),
'scipy': ('http://docs.scipy.org/doc/scipy/reference/', None),
- 'matplotlib': ('http://matplotlib.org/', None)}
+ 'matplotlib': ('http://matplotlib.org/', None),
+ 'torch': ('https://pytorch.org/docs/stable/', None)}
sphinx_gallery_conf = {
'examples_dirs': ['../../examples', '../../examples/da'],
@@ -345,6 +346,7 @@ sphinx_gallery_conf = {
'backreferences_dir': 'gen_modules/backreferences',
'inspect_global_variables' : True,
'doc_module' : ('ot','numpy','scipy','pylab'),
+ 'matplotlib_animations': True,
'reference_url': {
'ot': None}
}