We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 339a687 commit e87a735Copy full SHA for e87a735
conf.py
@@ -66,10 +66,17 @@
66
# ones.
67
extensions = [
68
'sphinxcontrib.katex',
69
+ 'sphinx.ext.intersphinx',
70
'sphinx_copybutton',
71
'sphinx_gallery.gen_gallery',
72
]
73
74
+intersphinx_mapping = {
75
+ "torch": ("https://pytorch.org/docs/stable/", None),
76
+ "torchaudio": ("https://pytorch.org/audio/stable/", None),
77
+ "torchtext": ("https://pytorch.org/text/stable/", None),
78
+ "torchvision": ("https://pytorch.org/vision/stable/", None),
79
+}
80
81
# -- Sphinx-gallery configuration --------------------------------------------
82
0 commit comments