- 30 Jul, 2020 1 commit
-
-
Jeremy Chen authored
* `istft` has been migrated to `pytorch`, and `torchaudio.functional.istft` has been deprecated in 0.6.0 release. This PR removes it Co-authored-by:Jeremy Chen <jeremyyy@fb.com>
-
- 21 Jul, 2020 1 commit
-
-
top0coder authored
Co-authored-by:Jeff Zhang <jeffzhang@fb.com>
-
- 16 Jul, 2020 1 commit
-
-
engineerchuan authored
* Get rid of sine wave files and whitenoise files * Refactor integer encoding * Relax rtol from 1e-8 to 1e-7 for compliance kaldi * relax waveform multi channel resample atol to 1e-7 from 1e-8 * relax tolerance for length consistency for speed effect Co-authored-by:moto <855818+mthrok@users.noreply.github.com>
-
- 06 Jul, 2020 1 commit
-
-
moto authored
-
- 01 Jul, 2020 1 commit
-
-
moto authored
-
- 18 Jun, 2020 1 commit
-
-
moto authored
* Make tests backend aware by introducing TorchaudioTestCase and reset backend for each TestCase. * Set backends for the test cases that require specific backend.
-
- 11 Jun, 2020 2 commits
- 27 May, 2020 1 commit
-
-
moto authored
-
- 14 May, 2020 1 commit
-
-
moto authored
-
- 13 May, 2020 1 commit
-
-
moto authored
-
- 08 May, 2020 1 commit
-
-
moto authored
* Introduce common utility for defining test matrix for device/dtype * Make resample_waveform support float64 * Mark lfilter related test as xfail when float64 * fix
-
- 30 Apr, 2020 1 commit
-
-
Ryuichi Yamamoto authored
* lfilter: add an optional arg `clamp` to give users control on the clamping behavior within the range [-1, 1], which was hardcoded before. Fixes #596 * doc string formatting * lint * doc string again Co-authored-by:Vincent QB <vincentqb@users.noreply.github.com>
-
- 14 Apr, 2020 2 commits
-
-
moto authored
This PR aims the following things; 1. Introduce and adopt helper function `get_asset_path` that abstract the logic to construct path to test assets. 2. Remove `create_temp_assets_dir` anywhere except `test_io`. The benefits of doing so are, a. the test code becomes simpler (no manual construction of asset path with `os.path.join`) b. No unnecessary directory creation and file copies. For 2. and b. tests in `test_io.py` (or tests that use `torchaudio.save`) are the only tests that need to write file to the disc, where the use of temporary directory makes it cleaner, therefore, `create_temp_assets_dir` is not necessary elsewhere. (still, `test_io` does not need to copy the entire asset directory, but that's not the point here.) Also if any test is accidentally overwriting an asset data, not using a copy will make us aware of such behavior, so it is better to get rid of `create_temp_assets_dir`.
-
moto authored
-
- 09 Apr, 2020 1 commit
-
-
moto authored
-
- 06 Apr, 2020 1 commit
-
-
moto authored
* grep -l 'torch.allclose' -r test | xargs sed -i 's/assert torch.allclose/torch.testing.assert_allclose/g' * grep -l 'torch.allclose' -r test | xargs sed -i 's/self.assertTrue(torch.allclose(\(.*\)))/torch.testing.assert_allclose(\1)/g' * Fix missing atol/rtol, wrong shape, argument order. Remove redundant shape assertions
-
- 03 Apr, 2020 2 commits
- 02 Apr, 2020 1 commit
-
-
moto authored
-
- 31 Mar, 2020 1 commit
-
-
moto authored
-
- 30 Mar, 2020 3 commits
-
-
moto authored
-
Vincent QB authored
* testing with sox only when sox is available. * use wav instead of mp3 for testing functions. * typo. * guard against not sox. * backends definition. * grouping backend functions into a separate file. * remove duplicated code. * requires sox. * replace by wav, requires sox. * require with scope. * undo alignment. * requires sox for these two, because of mp3. * no longer need first mp3. * cleaning. * new wav version of file. * flake8. * remove unnecessary load. * flake8. * lint. * lint. * revert formatting of file. * merging into common_utils. * docstring. * rename to common_utils.
-
moto authored
-
- 25 Mar, 2020 1 commit
-
-
Tomás Osório authored
* add functional DB_to_amplitude * add test scriptmodule * add test db_to_amplitude * add tests * improve docstrings, move ref for easier use
-
- 23 Mar, 2020 1 commit
-
-
Tomás Osório authored
-
- 13 Jan, 2020 1 commit
-
-
Vincent QB authored
* extend batch support closes #383 * function for batch test. * set seed. * adjust tolerance for griffinlim.
-
- 09 Jan, 2020 1 commit
-
-
Vincent QB authored
* move test for scriptmodule. * avoiding code duplication.
-
- 02 Jan, 2020 1 commit
-
-
Karl Ostmo authored
closes #382
-
- 26 Dec, 2019 1 commit
-
-
Charles J.Y. Yoon authored
* Griffin-Lim Transformation Implementation * Griffin-Lim Docs * Remove f-string from backwards compatibility * iSTFT is now jit-able. * Comment changes * Functional Implementation & now jitable * flake8 * Doc & GPU Fix * Librosa comparison test * test directly griffinlim's output. tighter atol. * matching signature to docstring. Co-authored-by:Vincent QB <vincentqb@users.noreply.github.com>
-
- 03 Dec, 2019 1 commit
-
-
Vincent QB authored
-
- 02 Dec, 2019 1 commit
-
-
Cami Williams authored
* Initial commit for SoX logic in VCTK * change to train whistle file for tests * apply probability
-
- 20 Nov, 2019 1 commit
-
-
Vincent QB authored
* nn.Module. * generalizing spectrogram test. * adding test to compile functionals. * add cuda/cpu compilation test. * adding transform test. * remove standalone jit file. * update mel scale. * remove script decorator. * apply to augmentations too.
-
- 18 Nov, 2019 1 commit
-
-
Vincent QB authored
* batching for transforms. * test for batching. * update readme.
-
- 31 Oct, 2019 1 commit
-
-
swchen1234 authored
* add linearity test for istft * one test needs to be relaxed from atol=1e-6 to atol=1e-5
-
- 30 Oct, 2019 1 commit
-
-
Vincent QB authored
* pitch detection validation. * make torchscriptable.
-
- 25 Sep, 2019 1 commit
-
-
engineerchuan authored
* Fixed create_fb_matrix filter bank behavior for fmin/fmax * add better test for f_min close to f_max * added one more test for f_min > f_max * adding one more test
-
- 20 Sep, 2019 1 commit
-
-
Kiran Sanjeevan authored
* TimeStretch and Masking * Doc stuff and naming
-
- 19 Sep, 2019 1 commit
-
-
Vincent QB authored
* compute deltas. * multichannel, and random test. * documentation. * feedback. changing name of window to win_length. * passing padding mode.
-
- 02 Aug, 2019 1 commit
-
-
Edward Z. Yang authored
- Apply __future__ imports uniformly (future division is the biggy, but absolute imports mattered too) - Hotfix use of tempfile.TemporaryDirectory using a BC library (DO NOT add this library as a dependency to torchaudio; it's only for testing) - Replace math.gcd with fractions.gcd - Fix a weird pytest collection bug involving parametrized tests - Turn on Python 2 and Python 3.7 in Travis. Signed-off-by:Edward Z. Yang <ezyang@fb.com>
-