- 18 Jun, 2021 1 commit
-
-
moto authored
-
- 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
-
- 03 May, 2021 2 commits
-
-
Caroline Chen authored
It was reported in #1478 that spectrogram masking operations were done in-place and modified the original input tensors. This PR fixes this behavior and adds tests to ensure that the input tensor is not changed.
-
Pavithran Ramachandran authored
-
- 30 Apr, 2021 1 commit
-
-
Caroline Chen authored
Replace the prototype RNNT implementation (using warp-transducer) with one without external library dependencies
-
- 26 Apr, 2021 1 commit
-
-
Mark Saroufim authored
-
- 23 Apr, 2021 1 commit
-
-
Krishna Kalyan authored
-
- 19 Apr, 2021 2 commits
-
-
dhthompson authored
- Put functional test logic into one place, `functional_impl.py` - Tidy imports
-
dhthompson authored
-
- 16 Apr, 2021 1 commit
-
-
moto authored
-
- 15 Apr, 2021 2 commits
-
-
Prabhat Roy authored
* Fixed floor_divide deprecation warnings seen in pytest output * Fixed warning in test_flanger_triangle_linear
-
moto authored
-
- 14 Apr, 2021 1 commit
-
-
moto authored
-
- 13 Apr, 2021 2 commits
-
-
Krishna Kalyan authored
-
Jcaw authored
The VAD function trims the input tensor to the first instance of voice activity on any channel or item. Trimming batches this way may be undesirable as the item with earliest activity will dominate. Either way, the batch behaviour does not match the itemwise behaviour. The VAD batch consistency tests currently pass out of coincidence, but they specify incorrect behaviour. This commit removes them.
-