├── .circleci ├── config.yml └── mock.env.json ├── .gitattributes ├── .gitignore ├── .nvmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── _static └── thumbs │ ├── DistPyTorch.jpg │ ├── babel.jpg │ ├── cartpole.gif │ ├── char_rnn_generation.png │ ├── cifar10.png │ ├── cpp_logo.png │ ├── data_parallel.png │ ├── examples.png │ ├── mnist.png │ ├── pytorch-logo-flat.png │ ├── seq2seq_flat.png │ ├── tensor_illustration_flat.png │ ├── torch-logo.png │ └── torch-nn-vs-pytorch-nn.png ├── docs ├── Makefile ├── changelog.rst ├── conf.py ├── configuring.rst ├── demo │ ├── api.rst │ ├── demo.rst │ ├── lists_tables.rst │ ├── long.rst │ ├── static │ │ ├── logo-wordmark-light.svg │ │ ├── pytorch-logo-dark.svg │ │ ├── screen_desktop.png │ │ ├── screen_mobile.png │ │ └── yi_jing_01_chien.jpg │ ├── structure.rst │ └── test_py_module │ │ ├── __init__.py │ │ └── test.py ├── index.rst ├── installing.rst ├── make.bat └── requirements.txt ├── fonts ├── FreightSans │ ├── freight-sans-bold-italic.woff │ ├── freight-sans-bold-italic.woff2 │ ├── freight-sans-bold.woff │ ├── freight-sans-bold.woff2 │ ├── freight-sans-book-italic.woff │ ├── freight-sans-book-italic.woff2 │ ├── freight-sans-book.woff │ ├── freight-sans-book.woff2 │ ├── freight-sans-light-italic.woff │ ├── freight-sans-light-italic.woff2 │ ├── freight-sans-light.woff │ ├── freight-sans-light.woff2 │ ├── freight-sans-medium-italic.woff │ ├── freight-sans-medium-italic.woff2 │ ├── freight-sans-medium.woff │ └── freight-sans-medium.woff2 └── IBMPlexMono │ ├── IBMPlexMono-Light.woff │ ├── IBMPlexMono-Light.woff2 │ ├── IBMPlexMono-Medium.woff │ ├── IBMPlexMono-Medium.woff2 │ ├── IBMPlexMono-Regular.woff │ ├── IBMPlexMono-Regular.woff2 │ ├── IBMPlexMono-SemiBold.woff │ └── IBMPlexMono-SemiBold.woff2 ├── images ├── arrow-down-blue.svg ├── arrow-right-with-tail.svg ├── chevron-down-black.svg ├── chevron-down-blue.svg ├── chevron-down-grey.svg ├── chevron-down-white.svg ├── chevron-right-blue.svg ├── chevron-right-white.svg ├── home-footer-background.jpg ├── icon-close.svg ├── icon-menu-dots-dark.svg ├── logo-dark.svg ├── logo-facebook-dark.svg ├── logo-icon.svg ├── logo-twitter-dark.svg ├── logo-youtube-dark.svg ├── logo.png ├── logo.svg ├── logo192.png ├── pytorch-colab.svg ├── pytorch-download.svg ├── pytorch-github.svg ├── pytorch-x.svg ├── search-icon.svg └── view-page-source-icon.svg ├── js ├── _utilities.js ├── filter-tutorial-tags.js ├── highlight-navigation.js ├── main-menu-dropdown.js ├── mobile-menu.js ├── mobile-toc.js ├── pytorch-anchors.js ├── scroll-to-anchor.js ├── side-menus.js └── theme.js ├── package.json ├── pytorch_sphinx_theme.py ├── pytorch_sphinx_theme ├── __init__.py ├── breadcrumbs.html ├── fonts.html ├── footer.html ├── layout.html ├── mathjax_config.html ├── search.html ├── searchbox.html ├── static │ ├── css │ │ └── theme.css │ ├── fonts │ │ ├── FreightSans │ │ │ ├── freight-sans-bold-italic.woff │ │ │ ├── freight-sans-bold-italic.woff2 │ │ │ ├── freight-sans-bold.woff │ │ │ ├── freight-sans-bold.woff2 │ │ │ ├── freight-sans-book-italic.woff │ │ │ ├── freight-sans-book-italic.woff2 │ │ │ ├── freight-sans-book.woff │ │ │ ├── freight-sans-book.woff2 │ │ │ ├── freight-sans-light-italic.woff │ │ │ ├── freight-sans-light-italic.woff2 │ │ │ ├── freight-sans-light.woff │ │ │ ├── freight-sans-light.woff2 │ │ │ ├── freight-sans-medium-italic.woff │ │ │ ├── freight-sans-medium-italic.woff2 │ │ │ ├── freight-sans-medium.woff │ │ │ └── freight-sans-medium.woff2 │ │ └── IBMPlexMono │ │ │ ├── IBMPlexMono-Light.woff │ │ │ ├── IBMPlexMono-Light.woff2 │ │ │ ├── IBMPlexMono-Medium.woff │ │ │ ├── IBMPlexMono-Medium.woff2 │ │ │ ├── IBMPlexMono-Regular.woff │ │ │ ├── IBMPlexMono-Regular.woff2 │ │ │ ├── IBMPlexMono-SemiBold.woff │ │ │ └── IBMPlexMono-SemiBold.woff2 │ ├── images │ │ ├── arrow-down-blue.svg │ │ ├── arrow-right-with-tail.svg │ │ ├── chevron-down-black.svg │ │ ├── chevron-down-blue.svg │ │ ├── chevron-down-grey.svg │ │ ├── chevron-down-white.svg │ │ ├── chevron-right-blue.svg │ │ ├── chevron-right-white.svg │ │ ├── favicon.ico │ │ ├── home-footer-background.jpg │ │ ├── icon-close.svg │ │ ├── icon-menu-dots-dark.svg │ │ ├── logo-dark.svg │ │ ├── logo-facebook-dark.svg │ │ ├── logo-icon.svg │ │ ├── logo-twitter-dark.svg │ │ ├── logo-youtube-dark.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── logo192.png │ │ ├── pytorch-colab.svg │ │ ├── pytorch-download.svg │ │ ├── pytorch-github.svg │ │ ├── pytorch-x.svg │ │ ├── search-icon.svg │ │ └── view-page-source-icon.svg │ └── js │ │ ├── modernizr.min.js │ │ ├── theme.js │ │ └── vendor │ │ ├── anchor.min.js │ │ ├── bootstrap.min.js │ │ └── popper.min.js ├── theme.conf ├── theme_variables.jinja └── versions.html ├── scss ├── _sphinx_base.scss ├── _sphinx_layout.scss ├── shared │ ├── _article.scss │ ├── _base_styles.scss │ ├── _code.scss │ ├── _fonts.scss │ ├── _footer.scss │ ├── _navigation.scss │ ├── _syntax-highlighting.scss │ └── _variables.scss └── theme.scss ├── setup.cfg ├── setup.py └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/mock.env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/.circleci/mock.env.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.4.0 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/README.md -------------------------------------------------------------------------------- /_static/thumbs/DistPyTorch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/DistPyTorch.jpg -------------------------------------------------------------------------------- /_static/thumbs/babel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/babel.jpg -------------------------------------------------------------------------------- /_static/thumbs/cartpole.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/cartpole.gif -------------------------------------------------------------------------------- /_static/thumbs/char_rnn_generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/char_rnn_generation.png -------------------------------------------------------------------------------- /_static/thumbs/cifar10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/cifar10.png -------------------------------------------------------------------------------- /_static/thumbs/cpp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/cpp_logo.png -------------------------------------------------------------------------------- /_static/thumbs/data_parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/data_parallel.png -------------------------------------------------------------------------------- /_static/thumbs/examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/examples.png -------------------------------------------------------------------------------- /_static/thumbs/mnist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/mnist.png -------------------------------------------------------------------------------- /_static/thumbs/pytorch-logo-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/pytorch-logo-flat.png -------------------------------------------------------------------------------- /_static/thumbs/seq2seq_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/seq2seq_flat.png -------------------------------------------------------------------------------- /_static/thumbs/tensor_illustration_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/tensor_illustration_flat.png -------------------------------------------------------------------------------- /_static/thumbs/torch-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/torch-logo.png -------------------------------------------------------------------------------- /_static/thumbs/torch-nn-vs-pytorch-nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/_static/thumbs/torch-nn-vs-pytorch-nn.png -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/configuring.rst -------------------------------------------------------------------------------- /docs/demo/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/api.rst -------------------------------------------------------------------------------- /docs/demo/demo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/demo.rst -------------------------------------------------------------------------------- /docs/demo/lists_tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/lists_tables.rst -------------------------------------------------------------------------------- /docs/demo/long.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/long.rst -------------------------------------------------------------------------------- /docs/demo/static/logo-wordmark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/static/logo-wordmark-light.svg -------------------------------------------------------------------------------- /docs/demo/static/pytorch-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/static/pytorch-logo-dark.svg -------------------------------------------------------------------------------- /docs/demo/static/screen_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/static/screen_desktop.png -------------------------------------------------------------------------------- /docs/demo/static/screen_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/static/screen_mobile.png -------------------------------------------------------------------------------- /docs/demo/static/yi_jing_01_chien.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/static/yi_jing_01_chien.jpg -------------------------------------------------------------------------------- /docs/demo/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/structure.rst -------------------------------------------------------------------------------- /docs/demo/test_py_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/demo/test_py_module/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/demo/test_py_module/test.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/installing.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-bold-italic.woff -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-bold-italic.woff2 -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-bold.woff -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-bold.woff2 -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-book-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-book-italic.woff -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-book-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-book-italic.woff2 -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-book.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-book.woff -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-book.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-book.woff2 -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-light-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-light-italic.woff -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-light-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-light-italic.woff2 -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-light.woff -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-light.woff2 -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-medium-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-medium-italic.woff -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-medium-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-medium-italic.woff2 -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-medium.woff -------------------------------------------------------------------------------- /fonts/FreightSans/freight-sans-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/FreightSans/freight-sans-medium.woff2 -------------------------------------------------------------------------------- /fonts/IBMPlexMono/IBMPlexMono-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/IBMPlexMono/IBMPlexMono-Light.woff -------------------------------------------------------------------------------- /fonts/IBMPlexMono/IBMPlexMono-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 -------------------------------------------------------------------------------- /fonts/IBMPlexMono/IBMPlexMono-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/IBMPlexMono/IBMPlexMono-Medium.woff -------------------------------------------------------------------------------- /fonts/IBMPlexMono/IBMPlexMono-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 -------------------------------------------------------------------------------- /fonts/IBMPlexMono/IBMPlexMono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/IBMPlexMono/IBMPlexMono-Regular.woff -------------------------------------------------------------------------------- /fonts/IBMPlexMono/IBMPlexMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 -------------------------------------------------------------------------------- /fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff -------------------------------------------------------------------------------- /fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 -------------------------------------------------------------------------------- /images/arrow-down-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/arrow-down-blue.svg -------------------------------------------------------------------------------- /images/arrow-right-with-tail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/arrow-right-with-tail.svg -------------------------------------------------------------------------------- /images/chevron-down-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/chevron-down-black.svg -------------------------------------------------------------------------------- /images/chevron-down-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/chevron-down-blue.svg -------------------------------------------------------------------------------- /images/chevron-down-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/chevron-down-grey.svg -------------------------------------------------------------------------------- /images/chevron-down-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/chevron-down-white.svg -------------------------------------------------------------------------------- /images/chevron-right-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/chevron-right-blue.svg -------------------------------------------------------------------------------- /images/chevron-right-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/chevron-right-white.svg -------------------------------------------------------------------------------- /images/home-footer-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/home-footer-background.jpg -------------------------------------------------------------------------------- /images/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/icon-close.svg -------------------------------------------------------------------------------- /images/icon-menu-dots-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/icon-menu-dots-dark.svg -------------------------------------------------------------------------------- /images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/logo-dark.svg -------------------------------------------------------------------------------- /images/logo-facebook-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/logo-facebook-dark.svg -------------------------------------------------------------------------------- /images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/logo-icon.svg -------------------------------------------------------------------------------- /images/logo-twitter-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/logo-twitter-dark.svg -------------------------------------------------------------------------------- /images/logo-youtube-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/logo-youtube-dark.svg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/logo192.png -------------------------------------------------------------------------------- /images/pytorch-colab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/pytorch-colab.svg -------------------------------------------------------------------------------- /images/pytorch-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/pytorch-download.svg -------------------------------------------------------------------------------- /images/pytorch-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/pytorch-github.svg -------------------------------------------------------------------------------- /images/pytorch-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/pytorch-x.svg -------------------------------------------------------------------------------- /images/search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/search-icon.svg -------------------------------------------------------------------------------- /images/view-page-source-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/images/view-page-source-icon.svg -------------------------------------------------------------------------------- /js/_utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/js/_utilities.js -------------------------------------------------------------------------------- /js/filter-tutorial-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/js/filter-tutorial-tags.js -------------------------------------------------------------------------------- /js/highlight-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/js/highlight-navigation.js -------------------------------------------------------------------------------- /js/main-menu-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/js/main-menu-dropdown.js -------------------------------------------------------------------------------- /js/mobile-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/js/mobile-menu.js -------------------------------------------------------------------------------- /js/mobile-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/js/mobile-toc.js -------------------------------------------------------------------------------- /js/pytorch-anchors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/js/pytorch-anchors.js -------------------------------------------------------------------------------- /js/scroll-to-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/js/scroll-to-anchor.js -------------------------------------------------------------------------------- /js/side-menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/js/side-menus.js -------------------------------------------------------------------------------- /js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/js/theme.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/package.json -------------------------------------------------------------------------------- /pytorch_sphinx_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme.py -------------------------------------------------------------------------------- /pytorch_sphinx_theme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/__init__.py -------------------------------------------------------------------------------- /pytorch_sphinx_theme/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/breadcrumbs.html -------------------------------------------------------------------------------- /pytorch_sphinx_theme/fonts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/fonts.html -------------------------------------------------------------------------------- /pytorch_sphinx_theme/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/footer.html -------------------------------------------------------------------------------- /pytorch_sphinx_theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/layout.html -------------------------------------------------------------------------------- /pytorch_sphinx_theme/mathjax_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/mathjax_config.html -------------------------------------------------------------------------------- /pytorch_sphinx_theme/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/search.html -------------------------------------------------------------------------------- /pytorch_sphinx_theme/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/searchbox.html -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/css/theme.css -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-bold-italic.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-bold-italic.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-bold.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-bold.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-book-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-book-italic.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-book-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-book-italic.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-book.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-book.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-book.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-book.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-light-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-light-italic.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-light-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-light-italic.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-light.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-light.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-medium-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-medium-italic.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-medium-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-medium-italic.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-medium.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/FreightSans/freight-sans-medium.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Light.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/arrow-down-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/arrow-down-blue.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/arrow-right-with-tail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/arrow-right-with-tail.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/chevron-down-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/chevron-down-black.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/chevron-down-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/chevron-down-blue.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/chevron-down-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/chevron-down-grey.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/chevron-down-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/chevron-down-white.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/chevron-right-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/chevron-right-blue.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/chevron-right-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/chevron-right-white.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/favicon.ico -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/home-footer-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/home-footer-background.jpg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/icon-close.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/icon-menu-dots-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/icon-menu-dots-dark.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/logo-dark.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/logo-facebook-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/logo-facebook-dark.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/logo-icon.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/logo-twitter-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/logo-twitter-dark.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/logo-youtube-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/logo-youtube-dark.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/logo.png -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/logo.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/logo192.png -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/pytorch-colab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/pytorch-colab.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/pytorch-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/pytorch-download.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/pytorch-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/pytorch-github.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/pytorch-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/pytorch-x.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/search-icon.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/images/view-page-source-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/images/view-page-source-icon.svg -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/js/modernizr.min.js -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/js/theme.js -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/js/vendor/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/js/vendor/anchor.min.js -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /pytorch_sphinx_theme/static/js/vendor/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/static/js/vendor/popper.min.js -------------------------------------------------------------------------------- /pytorch_sphinx_theme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/theme.conf -------------------------------------------------------------------------------- /pytorch_sphinx_theme/theme_variables.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/theme_variables.jinja -------------------------------------------------------------------------------- /pytorch_sphinx_theme/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/pytorch_sphinx_theme/versions.html -------------------------------------------------------------------------------- /scss/_sphinx_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/_sphinx_base.scss -------------------------------------------------------------------------------- /scss/_sphinx_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/_sphinx_layout.scss -------------------------------------------------------------------------------- /scss/shared/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/shared/_article.scss -------------------------------------------------------------------------------- /scss/shared/_base_styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/shared/_base_styles.scss -------------------------------------------------------------------------------- /scss/shared/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/shared/_code.scss -------------------------------------------------------------------------------- /scss/shared/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/shared/_fonts.scss -------------------------------------------------------------------------------- /scss/shared/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/shared/_footer.scss -------------------------------------------------------------------------------- /scss/shared/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/shared/_navigation.scss -------------------------------------------------------------------------------- /scss/shared/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/shared/_syntax-highlighting.scss -------------------------------------------------------------------------------- /scss/shared/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/shared/_variables.scss -------------------------------------------------------------------------------- /scss/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/scss/theme.scss -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/setup.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendilab/pytorch_sphinx_theme/HEAD/yarn.lock --------------------------------------------------------------------------------