1. 05 Jan, 2021 2 commits
  2. 30 Dec, 2020 4 commits
  3. 27 Dec, 2020 1 commit
  4. 22 Dec, 2020 3 commits
  5. 21 Dec, 2020 1 commit
    • Aziz's avatar
      Remove walk_files (#1111) · 8187dc0a
      Aziz authored
      The use of `walk_files` made it ambiguous who is responsible to locate 
      the correct set of files. (Dataset class? or utility?)
      In fact, just glob-ing everything is not the right problem being solved in implementing
      Dataset, because if you have a specific dataset you consider to access, then
      the directory structure and file locations are determined. No need to do arbitral number of recursions.
      Each Dataset implementation should be glob-ing the right set of files it requires.
      8187dc0a
  6. 19 Dec, 2020 1 commit
  7. 18 Dec, 2020 1 commit
  8. 17 Dec, 2020 1 commit
  9. 11 Dec, 2020 1 commit
  10. 08 Dec, 2020 1 commit
  11. 04 Dec, 2020 1 commit
  12. 03 Dec, 2020 1 commit
  13. 20 Nov, 2020 2 commits
  14. 18 Nov, 2020 2 commits
  15. 17 Nov, 2020 1 commit
  16. 16 Nov, 2020 2 commits
  17. 13 Nov, 2020 3 commits
  18. 03 Nov, 2020 1 commit
  19. 27 Oct, 2020 3 commits
  20. 12 Oct, 2020 1 commit
  21. 09 Oct, 2020 2 commits
  22. 06 Oct, 2020 1 commit
  23. 01 Oct, 2020 1 commit
  24. 28 Sep, 2020 2 commits
    • moto's avatar
      Add "soundfile" backend compatible to "sox_io" (#922) · 2c723e8c
      moto authored
      As a part of the "sox" backend sunset plan (#903), we add a "soundfile" backend that is compatible with the "sox_io" backend. No new public backend name is added. We provide a switch to change the interface/behavior of "soundfile" backend.
      
      This commit contains;
       - The implementation of the new "soundfile" backend.
       - The flag to switch the behavior of "soundfile" backend. (`torchaudio.USE_SOUNDFILE_LEGACY_INTERFACE`)
       - Test for the new backend and switching mechanism.
      
      The default behavior of "soundfile" backend is not changed. The users who want to opt-in the new "soundfile" interface can do so by `torchaudio.USE_SOUNDFILE_LEGACY_INTERFACE = False` before changing the backend to "soundfile".
      
      In 0.8.0 release, the "soundfile" backend will use this interface by default, and users can still use the legacy one with `torchaudio.USE_SOUNDFILE_LEGACY_INTERFACE = True`. In 0.9.0, the legacy interface is removed and `torchaudio.USE_SOUNDFILE_LEGACY_INTERFACE` flag will be eventually removed.
      2c723e8c
    • moto's avatar
      Add ConvTasNet model (#920) · 8e370559
      moto authored
      8e370559
  25. 21 Sep, 2020 1 commit