"vscode:/vscode.git/clone" did not exist on "923c8af4723b96383d21d66edc5bc951fdd84f58"
- 18 Oct, 2021 5 commits
-
-
moto authored
-
moto authored
-
moto authored
1. Override the return type so that Sphinx shows the exported symbols. (output model types and input torch.nn.Module) 2. Tweak docs for Tacotron2TTSBundle interfaces 3. Fix for HUBERT_ASR_XLARGE
-
Caroline Chen authored
-
moto authored
Resolve the following warnings when `make clean html`. ``` parsing bibtex file /torchaudio/docs/source/refs.bib... parsed 26 entries loading intersphinx inventory from https://docs.python.org/objects.inv... loading intersphinx inventory from https://docs.scipy.org/doc/numpy/objects.inv... loading intersphinx inventory from https://pytorch.org/docs/stable/objects.inv... intersphinx inventory has moved: https://docs.python.org/objects.inv -> https://docs.python.org/3/objects.inv intersphinx inventory has moved: https://docs.scipy.org/doc/numpy/objects.inv -> https://numpy.org/doc/stable/objects.inv ```
-
- 16 Oct, 2021 3 commits
- 15 Oct, 2021 5 commits
-
-
moto authored
Future work items: - length computation of GriffinLim - better way to make InverseMelScale work in inference_mode
-
moto authored
-
moto authored
-
moto authored
-
moto authored
- Move wav2vec2 pretrained weights to `torchaudio.pipelines` namespace to align with #1872. - Split `Wav2Vec2PretrainedModelBundle` into `Wav2Vec2Bundle` (for pre-training model) and `Wav2Vec2ASRBundle` (for models fine-tuned for ASR). - Update base URL
-
- 14 Oct, 2021 1 commit
-
-
Yi Zhang authored
* check cuda installation * check in build.sh * use USE_CUDA * Update pkg_helpers.bash * Fix typo
-
- 13 Oct, 2021 4 commits
-
-
nateanl authored
-
Caroline Chen authored
-
moto authored
-
nateanl authored
-
- 12 Oct, 2021 3 commits
-
-
Caroline Chen authored
-
Yi Zhang authored
-
nateanl authored
-
- 11 Oct, 2021 6 commits
-
-
moto authored
To handle batched input properly.
-
Yi Zhang authored
* set cu113 for unittest_windows_gpu * fix old logic * Update .circleci/regenerate.py Co-authored-by:Nikita Shulga <nikita.shulga@gmail.com>
-
Nikita Shulga authored
* Limit Windows GPU testing to CUDA-11.3 only Which is the only CUDA version that planned to be supported on Windows for the upcoming release * Move unittests to 11.3 as well
-
moto authored
-
moto authored
-
moto authored
-
- 10 Oct, 2021 1 commit
-
-
moto authored
Move the computation of `#classes -> #bits` to the constructor of WaveRNN and attach it to the instance, so that it can be reused elsewhere.
-
- 09 Oct, 2021 1 commit
-
-
moto authored
-
- 08 Oct, 2021 6 commits
- 07 Oct, 2021 5 commits
-
-
Caroline Chen authored
-
nateanl authored
-
moto authored
-
Caroline Chen authored
-
moto authored
This commit merges wav2vec2/hubert factory functions for pre-training and fine-tuning. In #1829, we added parameters to customize the models that are not part of architecture, and `aux_num_out` falls into this category, so it is no longer necessary to have separate functions. This concludes the wav2vec2/HuBERT API update in release 0.10. The summary of BC-breaking changes on wav2vec2 APIs between 0.9 and 0.10 (when this commit is incorporated) 1. `Wav2Vec2Model.extract_features` In 0.9, it was returning the output from `FeatureExtractor` module. In 0.10, it returns the list of outputs from the intermediate layers of `TransformerEncoder` block. 2. `wav2vec2_base(num_out: int)` -> `wav2vec2_base(<dropout_params:float>, aux_num_out: Optional[int]=None)` - `num_out` was renamed to `aux_num_out` and optional. If it is omitted, the resulting model does not have the linear layer for fine-tuning. - Added dropout parameters.
-