- 03 Aug, 2021 2 commits
-
-
Caroline Chen authored
-
Caroline Chen authored
-
- 02 Aug, 2021 2 commits
-
-
yangarbiter authored
-
Joel Frank authored
- Renamed torchaudio.functional.create_fb_matrix to torchaudio.functional.melscale_fbanks. - Added interface with a warning for create_fb_matrix
-
- 29 Jul, 2021 1 commit
-
-
Joel Frank authored
Summary: - Add linear_fbank method - Add LFCC in transforms
-
- 28 Jul, 2021 1 commit
-
-
yangarbiter authored
-
- 26 Jul, 2021 2 commits
-
-
yangarbiter authored
-
moto authored
-
- 22 Jul, 2021 1 commit
-
-
hwangjeff authored
Rebases #1571; addresses #1569: "In 0.9.0 we are deprecating the lazy behavior of MelScale because it can make an invalid TorchScript object and it does not align with the design of torchaudio. Now in master branch, we can remove the implementation." Co-authored-by:
Pankaj Patil <pankaj.patil2099@hotmail.com> Co-authored-by:
moto <855818+mthrok@users.noreply.github.com> Co-authored-by:
hwangjeff <jeffhwang@fb.com>
-
- 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 2 commits
-
-
Caroline Chen authored
-
Brian White authored
-