- 20 Aug, 2021 1 commit
-
-
hwangjeff authored
* Add basic filtfilt implementation * Add filtfilt to functional package; add tests Co-authored-by:V G <vladislav.goncharenko@phystech.edu>
-
- 19 Aug, 2021 1 commit
-
-
Caroline Chen authored
-
- 18 Aug, 2021 1 commit
-
-
yangarbiter authored
-
- 17 Aug, 2021 1 commit
-
-
Caroline Chen authored
-
- 12 Aug, 2021 1 commit
-
-
hwangjeff authored
* Reduce length of waveform in pitch_shift batch_consistency test Summary: To address the test failure in T96406395 Reviewed By: carolineechen Differential Revision: D30163741 fbshipit-source-id: f88d86b3da7b1ee52518934567b0b0a62700ee58 * Fix batch consistency test in transforms Summary: The stress test still fails. Add n_fft to address it. Reviewed By: mthrok Differential Revision: D30218279 fbshipit-source-id: 7858efd3e5ac0073193a7883fd314486efc73814 Co-authored-by:Zhaoheng Ni <zni@fb.com>
-
- 11 Aug, 2021 1 commit
-
-
nateanl authored
- Provide InverseSpectrogram module that corresponds to Spectrogram module - Add length parameter to the forward method in transforms Co-authored-by:
dgenzel <dgenzel@fb.com> Co-authored-by:
Zhaoheng Ni <zni@fb.com>
-
- 10 Aug, 2021 2 commits
-
-
Chin-Yun Yu authored
-
yangarbiter authored
-
- 04 Aug, 2021 1 commit
-
-
moto authored
D30080845
-
- 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.
-
- 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 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