1. 22 Apr, 2021 1 commit
  2. 21 Apr, 2021 1 commit
  3. 20 Apr, 2021 2 commits
  4. 19 Apr, 2021 3 commits
  5. 16 Apr, 2021 2 commits
  6. 15 Apr, 2021 4 commits
  7. 14 Apr, 2021 1 commit
  8. 13 Apr, 2021 3 commits
  9. 09 Apr, 2021 1 commit
  10. 08 Apr, 2021 3 commits
  11. 07 Apr, 2021 3 commits
  12. 06 Apr, 2021 8 commits
  13. 05 Apr, 2021 6 commits
  14. 02 Apr, 2021 2 commits
    • moto's avatar
      Add `return_complex` to F.spectrogram and T.Spectrogram (#1366) · 6a677ac8
      moto authored
      * Update spectrogram to use complex
      * Update autograd test
      * Update TS test
      * Update librosa test
      6a677ac8
    • moto's avatar
      Make `F.phase_vocoder` and `T.TimeStretch` handle complex dtype (#1410) · 0433b7aa
      moto authored
      1. `F.phase_vocoder` accepts Tensor with complex dtype.
          * The implementation path has been updated from #758 so that they share the same code path by internally converting the input Tensor to complex dtype and performing all the operation on top of it.
          * Adopted `torch.polar` for simpler Tensor generation from magnitude and angle.
      2. Updated tests
          * librosa compatibility test for complex dtype and pseudo complex dtype
              * Extracted the output shape check test and moved it to functional so that it will be tested on all the combination of `{CPU | CUDA} x {complex64 | complex128}`
          * TorchScript compatibility test for `F.phase_vocoder` and `T.TimeStretch`.
          * batch consistency test for `T.TimeStretch`.
      0433b7aa