- 05 Jan, 2021 2 commits
- 30 Dec, 2020 4 commits
- 27 Dec, 2020 1 commit
-
-
Aziz authored
Resolves #1125 where dataset metadata does not contain an extension.
-
- 22 Dec, 2020 3 commits
-
-
moto authored
-
Samuel Marks authored
- 21 Dec, 2020 1 commit
-
-
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.
-
- 19 Dec, 2020 1 commit
-
-
Jcaw authored
-
- 18 Dec, 2020 1 commit
-
-
moto authored
* Removes code for download logics * [BC-breaking] Changes the meaning of `root` argument to the exact directory of the dataset * Deprecates the constructor arguments for download and subdirectory construction
-
- 17 Dec, 2020 1 commit
-
-
moto authored
* Resolves https://github.com/pytorch/audio/issues/1095
-
- 11 Dec, 2020 1 commit
-
- 08 Dec, 2020 1 commit
-
-
moto authored
-
- 04 Dec, 2020 1 commit
-
-
moto authored
-
- 03 Dec, 2020 1 commit
-
-
Vincent QB authored
no longer allow to download the dataset directly. deprecate: download and url. add language.
-
- 20 Nov, 2020 2 commits
-
-
moto authored
Currently `libsox` on Linux is compiled with GPU OpenMP and it interferes with the version PyTorch uses (Intel in case of binary distribution). This PR disables OpenMP support for `libsox`, while we investigate the way to use the same OpenMP as PyTorch's version.
-
Bhargav Kathivarapu authored
-
- 18 Nov, 2020 2 commits
-
-
Bhargav Kathivarapu authored
-
Bhargav Kathivarapu authored
-
- 17 Nov, 2020 1 commit
-
-
Bhargav Kathivarapu authored
-
- 16 Nov, 2020 2 commits
-
-
Kshiteej K authored
Co-authored-by:Vincent QB <vincentqb@users.noreply.github.com>
-
Bhargav Kathivarapu authored
-
- 13 Nov, 2020 3 commits
-
-
Kshiteej K authored
-
Bhargav Kathivarapu authored
Co-authored-by:Vincent QB <vincentqb@users.noreply.github.com>
-
Kshiteej K authored
-
- 03 Nov, 2020 1 commit
-
-
moto authored
-
- 27 Oct, 2020 3 commits
-
-
moto authored
-
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 -
Vincent QB authored
-
- 12 Oct, 2020 1 commit
-
-
moto authored
-
- 09 Oct, 2020 2 commits
-
-
Vincent QB authored
-
Vincent QB authored
and add test on other backend.
-
- 06 Oct, 2020 1 commit
-
-
moto authored
-
- 01 Oct, 2020 1 commit
-
-
Vincent QB authored
* remove * in import of models. * only importing WaveRNN in tests.
-
- 28 Sep, 2020 2 commits
-
-
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.
-
moto authored
-
- 21 Sep, 2020 1 commit
-
-
toddstep authored
* Warn if create_fb_matrix produces a column whose weights are all zeros See also https://github.com/librosa/librosa/issues/478
-