From 108cd1c7aa97488954f2f3693e83336d1d49e513 Mon Sep 17 00:00:00 2001 From: moto <855818+mthrok@users.noreply.github.com> Date: Mon, 20 Jul 2020 22:38:34 +0000 Subject: [PATCH] Update docs to 0.5.0 --- .buildinfo | 4 - _modules/index.html | 52 +- _modules/torchaudio.html | 429 +- _modules/torchaudio/backend/common.html | 700 ++ .../torchaudio/backend/soundfile_backend.html | 657 + _modules/torchaudio/backend/sox_backend.html | 806 ++ .../torchaudio/backend/sox_io_backend.html | 720 ++ _modules/torchaudio/backend/utils.html | 620 + _modules/torchaudio/compliance/kaldi.html | 120 +- _modules/torchaudio/datasets/cmuarctic.html | 681 + _modules/torchaudio/datasets/commonvoice.html | 136 +- _modules/torchaudio/datasets/gtzan.html | 1621 +++ _modules/torchaudio/datasets/librispeech.html | 86 +- _modules/torchaudio/datasets/libritts.html | 662 + _modules/torchaudio/datasets/ljspeech.html | 65 +- .../torchaudio/datasets/speechcommands.html | 71 +- _modules/torchaudio/datasets/vctk.html | 93 +- _modules/torchaudio/datasets/yesno.html | 77 +- _modules/torchaudio/functional.html | 1181 +- _modules/torchaudio/kaldi_io.html | 90 +- _modules/torchaudio/legacy.html | 528 - _modules/torchaudio/models/wav2letter.html | 604 + _modules/torchaudio/sox_effects.html | 718 -- .../torchaudio/sox_effects/sox_effects.html | 976 ++ _modules/torchaudio/transforms.html | 309 +- _modules/torchaudio/utils/sox_utils.html | 615 + _sources/backend.rst.txt | 138 + _sources/datasets.rst.txt | 24 + _sources/functional.rst.txt | 70 + _sources/index.rst.txt | 15 +- _sources/kaldi.rst.txt | 26 - _sources/legacy.rst.txt | 7 - _sources/models.rst.txt | 17 + _sources/sox_effects.rst.txt | 47 +- _sources/torchaudio.rst.txt | 43 + _sources/transforms.rst.txt | 16 +- _sources/utils.rst.txt | 11 + _static/ajax-loader.gif | Bin 673 -> 0 bytes _static/basic.css | 143 +- _static/comment-bright.png | Bin 756 -> 0 bytes _static/comment-close.png | Bin 829 -> 0 bytes _static/comment.png | Bin 641 -> 0 bytes _static/css/badge_only.css | 2 - _static/css/badge_only.css.map | 7 - _static/css/theme.css | 292 +- _static/css/theme.css.map | 7 - _static/doctools.js | 7 +- _static/documentation_options.js | 2 + _static/down-pressed.png | Bin 222 -> 0 bytes _static/down.png | Bin 202 -> 0 bytes _static/fonts/FontAwesome.otf | Bin 134808 -> 0 bytes _static/fonts/Inconsolata-Bold.ttf | Bin 108360 -> 0 bytes _static/fonts/Inconsolata-Regular.ttf | Bin 95960 -> 0 bytes _static/fonts/Lato-Bold.ttf | Bin 656544 -> 0 bytes _static/fonts/Lato-BoldItalic.ttf | Bin 698364 -> 0 bytes _static/fonts/Lato-Italic.ttf | Bin 722900 -> 0 bytes _static/fonts/Lato-Regular.ttf | Bin 656568 -> 0 bytes _static/fonts/RobotoSlab-Bold.ttf | Bin 170616 -> 0 bytes _static/fonts/RobotoSlab-Regular.ttf | Bin 169064 -> 0 bytes _static/fonts/fontawesome-webfont.eot | Bin 165742 -> 0 bytes _static/fonts/fontawesome-webfont.svg | 2671 ---- _static/fonts/fontawesome-webfont.ttf | Bin 165548 -> 0 bytes _static/fonts/fontawesome-webfont.woff | Bin 98024 -> 0 bytes _static/fonts/fontawesome-webfont.woff2 | Bin 77160 -> 0 bytes _static/images/chevron-down-orange.svg | 16 + _static/images/logo-youtube-dark.svg | 21 + _static/img/pytorch-logo-flame.png | Bin 1010 -> 0 bytes _static/img/pytorch-logo-flame.svg | 33 - _static/jquery-3.1.0.js | 10074 --------------- _static/jquery-3.2.1.js | 10253 ---------------- _static/{jquery-3.4.1.js => jquery-3.5.1.js} | 1238 +- _static/jquery.js | 4 +- _static/js/theme.js | 163 +- _static/language_data.js | 2 +- _static/searchtools.js | 31 +- _static/up-pressed.png | Bin 214 -> 0 bytes _static/up.png | Bin 203 -> 0 bytes _static/websupport.js | 808 -- backend.html | 1262 ++ compliance.kaldi.html | 58 +- datasets.html | 138 +- functional.html | 628 +- genindex.html | 273 +- index.html | 432 +- kaldi.html | 611 - kaldi_io.html | 84 +- legacy.html => models.html | 213 +- objects.inv | Bin 1041 -> 1536 bytes py-modindex.html | 57 +- search.html | 40 +- searchindex.js | 2 +- sox_effects.html | 449 +- torchaudio.html | 642 + transforms.html | 346 +- utils.html | 645 + 95 files changed, 16570 insertions(+), 28119 deletions(-) delete mode 100644 .buildinfo create mode 100644 _modules/torchaudio/backend/common.html create mode 100644 _modules/torchaudio/backend/soundfile_backend.html create mode 100644 _modules/torchaudio/backend/sox_backend.html create mode 100644 _modules/torchaudio/backend/sox_io_backend.html create mode 100644 _modules/torchaudio/backend/utils.html create mode 100644 _modules/torchaudio/datasets/cmuarctic.html create mode 100644 _modules/torchaudio/datasets/gtzan.html create mode 100644 _modules/torchaudio/datasets/libritts.html delete mode 100644 _modules/torchaudio/legacy.html create mode 100644 _modules/torchaudio/models/wav2letter.html delete mode 100644 _modules/torchaudio/sox_effects.html create mode 100644 _modules/torchaudio/sox_effects/sox_effects.html create mode 100644 _modules/torchaudio/utils/sox_utils.html create mode 100644 _sources/backend.rst.txt delete mode 100644 _sources/kaldi.rst.txt delete mode 100644 _sources/legacy.rst.txt create mode 100644 _sources/models.rst.txt create mode 100644 _sources/torchaudio.rst.txt create mode 100644 _sources/utils.rst.txt delete mode 100644 _static/ajax-loader.gif delete mode 100644 _static/comment-bright.png delete mode 100644 _static/comment-close.png delete mode 100644 _static/comment.png delete mode 100644 _static/css/badge_only.css delete mode 100644 _static/css/badge_only.css.map delete mode 100644 _static/css/theme.css.map delete mode 100644 _static/down-pressed.png delete mode 100644 _static/down.png delete mode 100644 _static/fonts/FontAwesome.otf delete mode 100644 _static/fonts/Inconsolata-Bold.ttf delete mode 100644 _static/fonts/Inconsolata-Regular.ttf delete mode 100644 _static/fonts/Lato-Bold.ttf delete mode 100644 _static/fonts/Lato-BoldItalic.ttf delete mode 100644 _static/fonts/Lato-Italic.ttf delete mode 100644 _static/fonts/Lato-Regular.ttf delete mode 100644 _static/fonts/RobotoSlab-Bold.ttf delete mode 100644 _static/fonts/RobotoSlab-Regular.ttf delete mode 100644 _static/fonts/fontawesome-webfont.eot delete mode 100644 _static/fonts/fontawesome-webfont.svg delete mode 100644 _static/fonts/fontawesome-webfont.ttf delete mode 100644 _static/fonts/fontawesome-webfont.woff delete mode 100644 _static/fonts/fontawesome-webfont.woff2 create mode 100644 _static/images/chevron-down-orange.svg create mode 100644 _static/images/logo-youtube-dark.svg delete mode 100644 _static/img/pytorch-logo-flame.png delete mode 100644 _static/img/pytorch-logo-flame.svg delete mode 100644 _static/jquery-3.1.0.js delete mode 100644 _static/jquery-3.2.1.js rename _static/{jquery-3.4.1.js => jquery-3.5.1.js} (91%) delete mode 100644 _static/up-pressed.png delete mode 100644 _static/up.png delete mode 100644 _static/websupport.js create mode 100644 backend.html delete mode 100644 kaldi.html rename legacy.html => models.html (55%) create mode 100644 torchaudio.html create mode 100644 utils.html diff --git a/.buildinfo b/.buildinfo deleted file mode 100644 index 7409dbb694..0000000000 --- a/.buildinfo +++ /dev/null @@ -1,4 +0,0 @@ -# Sphinx build info version 1 -# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 2e8d3181ed99358854271e89e7964ec3 -tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_modules/index.html b/_modules/index.html index 059df64756..80ef984c3f 100644 --- a/_modules/index.html +++ b/_modules/index.html @@ -28,7 +28,7 @@ - + @@ -184,12 +184,16 @@

Package Reference

@@ -260,17 +264,27 @@

All modules for which code is available