- 13 Jan, 2020 1 commit
-
-
Vincent QB authored
* fix power of spectrogram. makes power a float. closes #389 * commenting out failing test. * change skip test logic for librosa. closes #373
-
- 09 Jan, 2020 1 commit
-
-
Vincent QB authored
* move test for scriptmodule. * avoiding code duplication.
-
- 02 Jan, 2020 2 commits
-
-
Karl Ostmo authored
closes #387
-
Karl Ostmo authored
closes #382
-
- 26 Dec, 2019 2 commits
-
-
Oktai Tatanov authored
* test with jit. * test passed after adding annotation, and removing get_default_dtype * fix conversion error. * moving test to transform. * reverting to original test. * move type. * math.gcd added in python 3.5. Co-authored-by:Vincent QB <vincentqb@users.noreply.github.com>
-
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>
-
- 19 Dec, 2019 1 commit
-
-
Vincent QB authored
* move sox inside function calls. * add backend switch mechanism. * import sox at runtime, not import. * add backend list. * backend tests. * creating hidden modules for backend. * naming backend same as file: soundfile. * remove docstring in backend file. * test soundfile info. * soundfile doesn't support int64. * adding test for wav file. * error with incorrect parameter instead of silent ignore. * adding test across backend. using float32 as done in sox. * backend guard decorator.
-
- 18 Dec, 2019 1 commit
-
-
Vincent QB authored
Skip librosa consistency test. unittest need one-line skip condition.
-
- 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
-
- 21 Nov, 2019 1 commit
-
-
Vincent QB authored
* sync docs with functionals. * Adding transforms to documentations. Moving augmentations in transforms.
-
- 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 2 commits
-
-
Vincent QB authored
* batching for transforms. * test for batching. * update readme.
-
Vincent QB authored
* STFT transform and function from #285 * merge options in existing functionality. * remove dimension 2 check. add test. * using ... * update spectrogram test.
-
- 06 Nov, 2019 2 commits
-
-
Vincent QB authored
* close file. * staying with datapoints as tuples until further notice. * loading tsv as dict.
-
Vincent QB authored
* BackgroundGenerator * renaming disk cache.
-
- 01 Nov, 2019 1 commit
-
-
xinyang0 authored
Add peaking equalizer filter in functional.py and test it in test_functional_filter.py.
-
- 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 2 commits
-
-
Vincent QB authored
-
Vincent QB authored
* pitch detection validation. * make torchscriptable.
-
- 29 Oct, 2019 1 commit
-
-
Vincent QB authored
Fix test for datasets.
-
- 23 Oct, 2019 1 commit
-
-
Vincent QB authored
* new dataset format. * add basic test. * files for testing. * serialization using torch. * add diskcache. * adding deprecation warnings. * removing legacy. * warning about transforms. * detecting file format using reader.
-
- 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 2 commits
-
-
engineerchuan authored
* Ensure that lfilter works with GPU * Add option to load on different device * Debugging tests of lfilter on GPU * allowing arbitrary types into lfilter
-
Vincent QB authored
* compute deltas. * multichannel, and random test. * documentation. * feedback. changing name of window to win_length. * passing padding mode.
-
- 18 Sep, 2019 1 commit
-
-
engineerchuan authored
* Add basic low pass filtering * Add highpass filtering * More tests of IIR vs FIR * Implement convolve function, add tests * Move lfilter and convolve into functional, more tests * added additional documentation for convolve and lfilter, renamed functional_filtering to functional_sox_convenience * Follow naming convention for sample rate in functional * fix failing vctk manifest test to account for adding more test audios into assets * Adding documentation for lfilter, biquad, highpass_biquad, lowpass_biquad * added matrix based implementation of lfilter * adding python lfilter implementation * factor out biquad, lowpass, highpass to sox compatibility
-
- 20 Aug, 2019 1 commit
-
-
jamarshon authored
-
- 16 Aug, 2019 1 commit
-
-
jamarshon authored
-
- 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>
-
- 01 Aug, 2019 2 commits
-
-
Edward Z. Yang authored
Signed-off-by:Edward Z. Yang <ezyang@fb.com>
-
jamarshon authored
-
- 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>
-
- 26 Jul, 2019 1 commit
-
-
jamarshon authored
-
- 24 Jul, 2019 4 commits
-
-
jamarshon authored
-
jamarshon authored
-
jamarshon authored
-
Kiran Sanjeevan authored
-
- 22 Jul, 2019 1 commit
-
-
jamarshon authored
-
- 16 Jul, 2019 1 commit
-
-
jamarshon authored
-