1. 27 May, 2021 2 commits
  2. 11 May, 2021 1 commit
  3. 30 Apr, 2021 1 commit
  4. 21 Apr, 2021 1 commit
  5. 22 Mar, 2021 1 commit
  6. 12 Mar, 2021 1 commit
  7. 05 Mar, 2021 1 commit
  8. 02 Mar, 2021 1 commit
  9. 01 Mar, 2021 1 commit
  10. 26 Feb, 2021 1 commit
  11. 24 Feb, 2021 1 commit
  12. 17 Feb, 2021 1 commit
  13. 12 Feb, 2021 1 commit
  14. 11 Feb, 2021 1 commit
  15. 11 Jan, 2021 1 commit
  16. 04 Dec, 2020 1 commit
  17. 06 Nov, 2020 1 commit
  18. 05 Nov, 2020 1 commit
  19. 27 Oct, 2020 2 commits
    • moto's avatar
      Remove legacy sox effects (#977) · 0076ab07
      moto authored
      0076ab07
    • moto's avatar
      Switch the default backend to the ones with new interfaces (#978) · fa2e4fd4
      moto authored
      Refer to #903 for the overview of planned I/O changes.
      
      * Change the default backend from `"sox"(deprecated)` to `"sox_io"`
      * Change the default interface of `"soundfile"` backend to the one identical to `"sox_io"` backend.
      * Deprecate torchaudio.USE_SOUNDFILE_LEGACY_INTERFACE
      * Update documentations
          * Re-order backends (default first)
          * Update overhaul timeline (removed 0.7.0)
          * Simplify `"soundfile"` backend description
      fa2e4fd4
  20. 19 Oct, 2020 1 commit
  21. 09 Oct, 2020 1 commit
  22. 02 Oct, 2020 1 commit
  23. 01 Oct, 2020 1 commit
  24. 15 Sep, 2020 1 commit
  25. 20 Aug, 2020 1 commit
  26. 19 Aug, 2020 1 commit
  27. 30 Jul, 2020 1 commit
  28. 29 Jul, 2020 1 commit
  29. 20 Jul, 2020 2 commits
    • 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
    • jimchen90's avatar
      Add LibriTTS dataset (#790) · 4b8aad7a
      jimchen90 authored
      
      
      * Add libritts
      
      Add LibriTTS dataset draft
      
      * Add libritts
      
      Use two separate ids for utterance_id.
      
      * Update output form
      
      Use full_id as utterance_id.
      
      * Update format
      
      Add space and test black format
      
      * Update test method
      
      * Add audio and text test
      
      Generate audio and test files on-the-fly in test 
      
      * Update format
      
      * Fix test error and remove assets libritts
      
      The test error is fixed by sorting the file in 4th element instead of 2nd element in samples. Since the files are generated on-the-fly, so the the libritts files in assets are removed.
      
      * Add seed in `get_whitenoise` function
      
      * Change utterance to text
      
      Change `_utterance` to `_text`.
      Co-authored-by: default avatarJi Chen <jimchen90@devfair0160.h2.fair>
      4b8aad7a
  30. 16 Jul, 2020 1 commit
    • moto's avatar
      Add Torchscript sox effects (#760) · 60a8e23d
      moto authored
      * Add sox_utils module
      
      * Make init/shutdown thread safe
      
      * Add sox effects implementation
      
      * Add test for sox effects
      
      * Update docstrings and add examples
      60a8e23d
  31. 10 Jun, 2020 1 commit
  32. 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
  33. 02 Jun, 2020 2 commits
  34. 01 May, 2020 1 commit
  35. 28 Apr, 2020 2 commits
    • Tomás Osório's avatar
      Add model Wav2Letter (#462) · d678357f
      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
      d678357f
    • 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