- 06 May, 2020 1 commit
-
-
moto authored
* Add GPU test * Run only on master
-
- 05 May, 2020 1 commit
-
-
Tomás Osório authored
-
- 04 May, 2020 3 commits
-
-
moto authored
-
moto authored
-
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>
-
- 02 May, 2020 1 commit
-
-
moto authored
* Bust cache weekly * Rename directory for utility * Show 20 slowest tests * fixup! Show 20 slowest tests
-
- 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 3 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>
-
Jan Schlüter authored
* Allow zero momentum in Griffin-Lim * Skip momentum in Griffin-Lim if zero
-
Artyom Astafurov authored
-
- 29 Apr, 2020 4 commits
- 28 Apr, 2020 3 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
-
moto authored
-
- 27 Apr, 2020 1 commit
-
-
Vincent QB authored
* formatting. * update datasets.
-
- 25 Apr, 2020 1 commit
-
-
moto authored
-
- 24 Apr, 2020 6 commits
-
-
moto authored
* Add safeguard to SoX initialization/shutdown * Initialize SoX automatically when it's needed
-
moto authored
-
moto authored
-
moto authored
Nightly smoke test is failing for Python 3.8 as conda environment does not exist.
-
Vincent QB authored
-
moto authored
* wip * Add test * add caching * fixup! add caching * fixup! fixup! add caching
-
- 23 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
-
- 21 Apr, 2020 2 commits
-
-
Tomás Osório authored
* fix inline typing for mypy * fix flake8 * change check position * fix for py3.5 * fix for py3.5 * change to inline typing * add inline typing
-
Bhargav Kathivarapu authored
* add checksums * checksum function changes * function Docstring change * checksums moved to Dataset Modules
-
- 20 Apr, 2020 3 commits
-
-
moto authored
Before Total time: 13.7078 ``` 722| 220501| 2.44247| 1.10769e-05| 17.82%| for i_sample, o0 in enumerate(input_signal_windows.t()): (call)| 1| 6.36578e-05| 6.36578e-05| 0.00%|# /scratch/moto/pytorch/torch/tensor.py:460 __iter__ (call)| 220500| 1.60566| 7.28191e-06| 11.71%|# /scratch/moto/pytorch/torch/tensor.py:474 <lambda> 723| 220500| 1.86697| 8.46698e-06| 13.62%| windowed_output_signal = padded_output_waveform[:, i_sample:(i_sample + n_order)] 724| 220500| 1.94628| 8.82669e-06| 14.20%| o0.addmv_(windowed_output_signal, a_coeffs_flipped, alpha=-1) 725| 220500| 2.46| 1.11565e-05| 17.94%| o0.div_(a_coeffs[0]) 726| 0| 0| 0| 0.00%| 727| 220500| 3.37869| 1.53229e-05| 24.64%| padded_output_waveform[:, i_sample + n_order - 1] = o0 ``` After Total time: 10.9667 ``` 722| 1| 9.2268e-05| 9.2268e-05| 0.00%| input_signal_windows.div_(a_coeffs[0]) 723| 1| 2.14577e-05| 2.14577e-05| 0.00%| a_coeffs_flipped.div_(a_coeffs[0]) 724| 220501| 2.40216| 1.08941e-05| 21.90%| for i_sample, o0 in enumerate(input_signal_windows.t()): (call)| 1| 5.84126e-05| 5.84126e-05| 0.00%|# /scratch/moto/pytorch/torch/tensor.py:460 __iter__ (call)| 220500| 1.59821| 7.2481e-06| 14.57%|# /scratch/moto/pytorch/torch/tensor.py:474 <lambda> 725| 220500| 1.82273| 8.26633e-06| 16.62%| windowed_output_signal = padded_output_waveform[:, i_sample:(i_sample + n_order)] 726| 220500| 1.84074| 8.34802e-06| 16.78%| o0.addmv_(windowed_output_signal, a_coeffs_flipped, alpha=-1) 727| 220500| 3.2952| 1.49442e-05| 30.05%| padded_output_waveform[:, i_sample + n_order - 1] = o0 ```
-
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>
-