1. 12 Feb, 2021 1 commit
  2. 09 Feb, 2021 1 commit
  3. 04 Feb, 2021 1 commit
  4. 26 Jan, 2021 1 commit
  5. 25 Jan, 2021 1 commit
  6. 06 Jan, 2021 1 commit
  7. 17 Dec, 2020 1 commit
  8. 14 Dec, 2020 1 commit
  9. 04 Dec, 2020 1 commit
  10. 20 Nov, 2020 1 commit
  11. 18 Nov, 2020 1 commit
  12. 06 Nov, 2020 2 commits
  13. 05 Nov, 2020 1 commit
  14. 29 Sep, 2020 1 commit
  15. 21 Sep, 2020 1 commit
  16. 07 Aug, 2020 1 commit
  17. 03 Aug, 2020 1 commit
  18. 30 Jul, 2020 1 commit
  19. 20 Jul, 2020 1 commit
    • moto's avatar
      Update documentation and fix docstrings (#788) · 2381dd89
      moto authored
      - Addresses #549 #638 #786 
      - Add `torchaudio` top level module doc
      - Separate `torchaudio` top level module doc from `index.html`
      - Add `backend` module doc.
      - Remove `-> None` from function signature as it adds noise to documentation
      - Changed function argument name of `torchaudio.backend.sox_io_backend.save` from `tensor` to `src`, so that it matches with the reset of backends.
      - Tweak bunch of docstrings
      2381dd89
  20. 26 Jun, 2020 1 commit
  21. 18 Jun, 2020 1 commit
  22. 11 Jun, 2020 1 commit
  23. 08 Jun, 2020 1 commit
  24. 03 Jun, 2020 1 commit
    • jimchen90's avatar
      Add Bass with Biquad (#661) · a466b3c2
      jimchen90 authored
      
      
      * Add bass with biquad
      
      * Update functional.py
      
      Add the normalization coefficients
      
      * Update test_sox_compatibility.py
      
      In test_sox_compatibility.py file, I add two bass tests: one test sets gain = 30, atol = 1e-4, the other sets gain = 40, atol = 1.5e-4. The details can be seen in pytorch#676
      
      * Update torchscript_consistency_impl.py
      
      Add torchscript test
      
      * Add flake8 test
      Co-authored-by: default avatarJi Chen <jimchen90@devfair0160.h2.fair>
      a466b3c2
  25. 02 Jun, 2020 1 commit
  26. 27 May, 2020 1 commit
  27. 14 May, 2020 1 commit
    • Vincent QB's avatar
      add slaney normalization (#589) · 995b75f8
      Vincent QB authored
      * add slaney normalization.
      
      * add torchscript.
      
      * convert to string for torchscript compatibility.
      
      * flake8.
      
      * use string as default.
      995b75f8
  28. 13 May, 2020 1 commit
  29. 06 May, 2020 1 commit
  30. 04 May, 2020 1 commit
  31. 01 May, 2020 1 commit
  32. 30 Apr, 2020 2 commits
  33. 29 Apr, 2020 1 commit
  34. 28 Apr, 2020 1 commit
    • Artyom Astafurov's avatar
      Port sox::vad (#578) · 3ecc7016
      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
      3ecc7016
  35. 22 Apr, 2020 2 commits
  36. 20 Apr, 2020 2 commits
    • moto's avatar
      Improve lfilter speed (#564) · 27a0f765
      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
      ```
      27a0f765
    • Bhargav Kathivarapu's avatar
      Add dcshift to functional (#558) · 91e59231
      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
      91e59231