- 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>
-
- 30 Jul, 2019 1 commit
-
-
Edward Z. Yang authored
This makes it easier to test against an installed wheel, as the torchaudio folder is no longer preferentially picked up when you run a test module. I had to move all tests in subfolders into the top level test directory to make this work, since you can't access .. modules without mucking around with sys.path (which I don't want to do.) NB: this BREAKS the syntax where you can run a test by saying `python -m test.test`. Instead, do `python test/test.py` or use the pytest runner. Signed-off-by:Edward Z. Yang <ezyang@fb.com>
-
- 24 Jul, 2019 2 commits
-
-
jamarshon authored
-
Kiran Sanjeevan authored
-
- 10 Jul, 2019 1 commit
-
-
jamarshon authored
-