- 22 Jul, 2020 1 commit
-
-
moto authored
Part of #764
-
- 21 Jul, 2020 1 commit
-
-
top0coder authored
Co-authored-by:Jeff Zhang <jeffzhang@fb.com>
-
- 06 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.
-
- 05 Jun, 2020 1 commit
-
-
moto authored
* Replace `backed_guard` with `requires_module` * Remove backend_guard
-
- 04 Jun, 2020 1 commit
-
-
moto authored
-
- 27 May, 2020 1 commit
-
-
moto authored
-
- 15 May, 2020 1 commit
-
-
moto authored
-
- 14 May, 2020 1 commit
-
-
Vincent QB authored
* add slaney normalization. * add torchscript. * convert to string for torchscript compatibility. * flake8. * use string as default.
-
- 24 Apr, 2020 1 commit
-
-
moto authored
* wip * Add test * add caching * fixup! add caching * fixup! fixup! add caching
-
- 14 Apr, 2020 1 commit
-
-
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`.
-
- 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 1 commit
-
-
Vincent QB authored
-
- 01 Apr, 2020 1 commit
-
-
moto authored
-
- 31 Mar, 2020 1 commit
-
-
moto authored
-