- 04 May, 2020 1 commit
-
-
peterjc123 authored
* Turn on tests when building through conda-build * skip one failling test on windows. * Switch to unittest * Fix conda env activation * add linux only condition * Fix librosa installation * conda-forge channel as a fallback * Revert "conda-forge channel as a fallback" This reverts commit 8c15f6638e34792640a3de3e057d9c2995425180. * Try the pytorch way * Use conda-forge * Disable conda-forge * Install future at setup env * Move linux unittest CI job tools to dedicated directory * Restore Linux scripts and move the updated souces to a new subdir * Add back future * Remove comments Co-authored-by:
Vincent Quenneville-Belair <vincentqb@gmail.com> Co-authored-by:
moto <855818+mthrok@users.noreply.github.com>
-
- 01 May, 2020 3 commits
-
-
moto authored
* Add one fbank compatibility test * Update util
-
Bhargav Kathivarapu authored
Signed-off-by:Bhargav Kathivarapu <bhargavkathivarapu31@gmail.com>
-
moto authored
* Add README for test * Apply review feedback * Add description to test_dataloader
-
- 30 Apr, 2020 2 commits
-
-
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>
-
Artyom Astafurov authored
-
- 29 Apr, 2020 1 commit
-
-
moto authored
-
- 28 Apr, 2020 2 commits
-
-
Tomás Osório authored
* add wav2letter model * add unit_test to model * add docstrings * add documentation * fix minor error, change logic on forward * update padding same with ceil * add inline typing and minor fixes to docstrings * remove python2 * add formula do docstrings, change param name * add test with mfcc, add pytest * fix bug, update docstrings * change parameter name
-
Artyom Astafurov authored
* initial test, stub function, transform and docstring * add draft working implementation, update docstrings * merge VadSate into Vad calss, move Channel into Vad class * remove functional stub for vad * add wav file for test * refactor _measure() to improve performance * rename argument * replace copy_ with assignment * refactor init, update documentation, update test for readability * clean up default values * move code from transforms.py to funtional.py and integrate state into a function * remove Channel state class * fix calcuation of a flush point * make multiple channels work * clean up multi-channel, update test * rename variables and re-org arguments for _measure * fix linting errors * add torchscript consistency test and fix errors * support and test batch consistency, fix normalization * update documentation, switch torchscript consistancy test to use transform to improve coverage * fix linting errors * remove un-used imports * address PR comments * add doc references into rst
-
- 24 Apr, 2020 2 commits
- 22 Apr, 2020 3 commits
-
-
Bhargav Kathivarapu authored
* Add overdrive to functional * Minor change to overdrive * Minor change to overdrive * minor flake8 changes * changes to make overdrive generic Co-authored-by:Vincent QB <vincentqb@users.noreply.github.com>
-
moto authored
-
moto authored
-
- 20 Apr, 2020 2 commits
-
-
moto authored
-
Bhargav Kathivarapu authored
* Add dcshift to functional * Doc string change and remove inplace clamp * Minor Fix to dcshit and separate sox test refactoring * Minor change to limiter_gain type * adding dcshift to __all__ in functional
-
- 17 Apr, 2020 3 commits
-
-
moto authored
-
Bhargav Kathivarapu authored
-
wanglong001 authored
* add cmvn * Update transforms.rst add cmvn * Correct the format * Correct the format * Correct the format * add test unit and cmvn change to cmn * fix bug Co-authored-by:Vincent QB <vincentqb@users.noreply.github.com>
-
- 16 Apr, 2020 1 commit
-
-
Bhargav Kathivarapu authored
* Add contrast to functional * add tests for contrast and update functional.rst * Minor changes to sox and batch tests for contrast
-
- 14 Apr, 2020 3 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
This lfilter tests were moved to `test_torchscript_consistency.py` in #507 and GPU tests were added in #528. We can safely remove this tests from `test_functional_filtering.py`.
-
moto authored
-
- 13 Apr, 2020 2 commits
- 09 Apr, 2020 3 commits
-
-
moto authored
-
moto authored
* Separate CPU and GPU tests for functions torchscript test * fix indentation Co-authored-by:Vincent QB <vincentqb@users.noreply.github.com>
-
moto authored
-
- 07 Apr, 2020 2 commits
- 06 Apr, 2020 3 commits
-
-
moto authored
-
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
-
moto authored
-
- 03 Apr, 2020 7 commits
-
-
Vincent QB authored
-
moto authored
-
moto authored
* Fix test_compute_deltas_twochannels * Fix 3batch test helper
-
moto authored
-
moto authored
-
Tomás Osório authored
* fix download * fix reading tsv archive * add new languages * maintain same structure as other datasets * update CommonVoice Tests * fix * change directory name * remove extra line
-
moto authored
-