1. 26 Sep, 2022 2 commits
    • Andrey Talman's avatar
      Fix windows tests related to old conda on circleci (#2704) · 1c8accfc
      Andrey Talman authored
      Summary:
      Conda version on circleCI prints following message:
      ```
      ==> WARNING: A newer version of conda exists. <==
        current version: 4.6.14
        latest version: 4.14.0
      ```
      and as a result this error:
      
      ```
      + /c/tools/miniconda3/Scripts/conda.exe install -v -y -c pytorch-nightly -c nvidia pytorch numpy ffmpeg pytorch-cuda=11.6
      Collecting package metadata: ...working... done
      Solving environment: ...working...
      
      Too long with no output (exceeded 30m0s): context deadline exceeded
      ```
      
      This should update the conda version running on the system and allow us to install pytorch and run some tests.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2704
      
      Reviewed By: weiwangmeta
      
      Differential Revision: D39820037
      
      Pulled By: atalman
      
      fbshipit-source-id: 4a82a7a6cbe3dc1a5807ac669e2fa79f454037fa
      1c8accfc
    • Andrey Talman's avatar
      Remove linux wheel from circleci (#2714) · 14714f29
      Andrey Talman authored
      Summary:
      Remove linux wheel from circleci
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2714
      
      Reviewed By: weiwangmeta
      
      Differential Revision: D39816121
      
      Pulled By: atalman
      
      fbshipit-source-id: a3c99b530896888d7b4271d8b3f27f3c986b3480
      14714f29
  2. 24 Sep, 2022 2 commits
    • hwangjeff's avatar
      Fix CUDA check (#2710) · ce08f8d2
      hwangjeff authored
      Summary:
      `torch.version.cuda` can return a string of form X.X or X.X.X. This PR modifies the CUDA version check to account for this.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2710
      
      Reviewed By: carolineechen, nateanl
      
      Differential Revision: D39796810
      
      Pulled By: hwangjeff
      
      fbshipit-source-id: b483bd8200195844d65d0caddebaf1b10f939b64
      ce08f8d2
    • hwangjeff's avatar
      Add CUDA version check (#2707) · 0a5825ae
      hwangjeff authored
      Summary:
      Adds check to ensure that TorchAudio and PyTorch versions use the same CUDA version.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2707
      
      Reviewed By: mthrok
      
      Differential Revision: D39791154
      
      Pulled By: hwangjeff
      
      fbshipit-source-id: de00889c7bac897c6b8762502f9d37797016b71d
      0a5825ae
  3. 23 Sep, 2022 3 commits
  4. 22 Sep, 2022 2 commits
  5. 21 Sep, 2022 5 commits
  6. 20 Sep, 2022 4 commits
  7. 16 Sep, 2022 3 commits
  8. 15 Sep, 2022 4 commits
  9. 14 Sep, 2022 5 commits
  10. 13 Sep, 2022 3 commits
  11. 12 Sep, 2022 1 commit
  12. 09 Sep, 2022 2 commits
  13. 07 Sep, 2022 1 commit
    • moto's avatar
      Tweak documentation (#2656) · 8a0d7b36
      moto authored
      Summary:
      1. Override class `__module__` attribute in `conf.py` so that no manual override is necessary
      2. Fix SourceSeparationBundle member attribute
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2656
      
      Reviewed By: carolineechen
      
      Differential Revision: D39293053
      
      Pulled By: mthrok
      
      fbshipit-source-id: 2b8d6be1aee517d0e692043c26ac2438a787adc6
      8a0d7b36
  14. 06 Sep, 2022 3 commits
    • Ravi Makhija's avatar
      Fix random Gaussian generation (#2639) · 3430fd68
      Ravi Makhija authored
      Summary:
      This PR is meant to address the bug raised in issue https://github.com/pytorch/audio/issues/2634.
      
      In particular, previously the Box Muller transform was used to generate Gaussian variates for dithering based on `torch.rand` uniform variates, but it was incorrectly implemented (e.g. the same uniform variate was used as input to the transform, rather than two different uniform variates), which led to a different (non-Gaussian) distribution. This PR instead uses `torch.randn` to generate the Gaussian variates.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2639
      
      Reviewed By: mthrok
      
      Differential Revision: D39101144
      
      Pulled By: carolineechen
      
      fbshipit-source-id: 691e49679f6598ef0a1675f6f4ee721ef32215fd
      3430fd68
    • Caroline Chen's avatar
      Add metadata function for LibriSpeech (#2653) · 08d3bb17
      Caroline Chen authored
      Summary:
      Adding support for metadata mode, requested in https://github.com/pytorch/audio/issues/2539, by adding a public `get_metadata()` function in the dataset. This function can be used directly by users to fetch metadata for individual dataset indices, or users can subclass the dataset and override `__getitem__` with `get_metadata` to create a dataset class that directly handles metadata mode.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2653
      
      Reviewed By: nateanl, mthrok
      
      Differential Revision: D39105114
      
      Pulled By: carolineechen
      
      fbshipit-source-id: 6f26f1402a053dffcfcc5d859f87271ed5923348
      08d3bb17
    • Peter Albert's avatar
      Remove obsolete examples (#2655) · 4a20c412
      Peter Albert authored
      Summary:
      Pull Request resolved: https://github.com/pytorch/audio/pull/2655
      
      Removed obsolete example and the corresponding test
      
      Reviewed By: mthrok
      
      Differential Revision: D39260253
      
      fbshipit-source-id: 0bde71ffd75dd0c94a5cc4a9940f4648a5d61bd7
      4a20c412