- 21 Jul, 2021 1 commit
-
-
Chin-Yun Yu authored
-
- 20 Jul, 2021 2 commits
-
-
hwangjeff authored
-
yangarbiter authored
Porting Tacotron2 from https://github.com/NVIDIA/DeepLearningExamples/blob/master/PyTorch/SpeechSynthesis/Tacotron2/tacotron2/model.py
-
- 16 Jul, 2021 1 commit
-
-
nateanl authored
-
- 15 Jul, 2021 1 commit
-
-
Caroline Chen authored
-
- 14 Jul, 2021 1 commit
-
-
Joel Frank authored
-
- 12 Jul, 2021 1 commit
-
-
yangarbiter authored
The test was broken from the beginning and for a reason unrelated to ROCm, but was disabled for ROCm in https://github.com/pytorch/audio/pull/1411. https://github.com/pytorch/audio/pull/1604 fixed the test so that we are re-enabling it.
-
- 07 Jul, 2021 1 commit
-
-
Caroline Chen authored
-
- 28 Jun, 2021 1 commit
-
-
Caroline Chen authored
-
- 25 Jun, 2021 1 commit
-
-
yangarbiter authored
-
- 24 Jun, 2021 1 commit
-
-
Caroline Chen authored
-
- 23 Jun, 2021 1 commit
-
-
yangarbiter authored
-
- 18 Jun, 2021 2 commits
- 09 Jun, 2021 2 commits
-
-
moto authored
Since 0.9.0-RC1, `T.Resample` precomputes and caches resampling kernel for performance improvement. (10x improvement). The implementation from 0.8.0 computed the kernel on-the-fly on the same `device`/`dtype` as the input Tensor, but in the newer version, the kernel is precomputed at the construction time and is cached with `float32` first. This causes degradation if one wants to perform resampling on `float64`, because `sinc` values computed on `float32`s are not good enough for resampling in `float64`. The reason why we decided to use `float32` for initial caching is to keep the UX disruption minimum, and there were no way to make it work for `float64`. This PR adds `dtype` argument, that can be used for overwriting the cache precision.
-
Salil Desai authored
-
- 04 Jun, 2021 4 commits
-
-
moto authored
`torchaudio.compliance.kaldi.resample_waveform` has been replaced with `torchaudio.funcitonal.resample`.
-
moto authored
* [BC-Breaking] Default to native complex type when returning raw spectrogram Part of https://github.com/pytorch/audio/issues/1337 . - This code changes the return type of spectrogram to be native complex dtype, when (and only when) returning raw (complex-valued) spectrogram. - Change `return_complex=False` to `return_complex=True` in spectrogram ops. - `return_complex` is only effective when `power` is `None`. It is ignored for cases where `power` is not `None`. Because the returned Tensor is power spectrogram, which is real-valued Tensors.
-
Vincent QB authored
* autograd test from carolineechen/audio#2 * fix numpy backward: be careful to not modify inplace.
-
Caroline Chen authored
-
- 01 Jun, 2021 2 commits
-
-
Caroline Chen authored
-
moto authored
-
- 27 May, 2021 2 commits
- 24 May, 2021 1 commit
-
-
Denis Kokarev authored
-
- 22 May, 2021 2 commits
- 21 May, 2021 1 commit
-
-
Artyom Astafurov authored
* Update VAD docstring and check for input shape length * Update docstring in forward for transform * Address review feedback: merge tests, update wording
-
- 20 May, 2021 1 commit
-
-
Caroline Chen authored
-
- 19 May, 2021 4 commits
-
-
Caroline Chen authored
-
Brian White authored
-
moto authored
Since the update of Xcode, some of HTTP tests are failing on macOS, due to `reqests.get` fails to establish a connection to local server. This change increase the wait time to 2 seconds before test starts.
-
Caroline Chen authored
-
- 14 May, 2021 1 commit
-
-
Borun Dev Chowdhury authored
-
- 12 May, 2021 1 commit
-
-
Kirill Ignatev authored
-
- 11 May, 2021 2 commits
-
-
discort authored
Co-authored-by:Vincent Quenneville-Belair <vincentqb@gmail.com>
-
Caroline Chen authored
-
- 06 May, 2021 3 commits
-
-
Chin-Yun Yu authored
-
Caroline Chen authored
-
moto authored
-