1. 18 Jul, 2022 1 commit
  2. 15 Jul, 2022 1 commit
  3. 12 Jul, 2022 6 commits
    • moto's avatar
      Simplify the requirements to minimum runtime dependencies (#2313) · 632ea670
      moto authored
      Summary: Pull Request resolved: https://github.com/pytorch/audio/pull/2313
      
      Reviewed By: carolineechen, nateanl
      
      Differential Revision: D37799552
      
      Pulled By: mthrok
      
      fbshipit-source-id: 12e27fccb7098f3142e9ca0b748c71325cd324ee
      632ea670
    • Sean Kim's avatar
      Docstring change for Hybrid Demucs (#2542) · 99303143
      Sean Kim authored
      Summary:
      Small edit to docstring for kernel
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2542
      
      Reviewed By: carolineechen
      
      Differential Revision: D37797937
      
      Pulled By: skim0514
      
      fbshipit-source-id: 4bdd1e3ddb49cbdf2bd5367edb03cf9603d4ec6e
      99303143
    • moto's avatar
      Simplify HW acceleration code (#2534) · 4ba56323
      moto authored
      Summary:
      FFmpeg's API provide multiple ways to initialize decoder. This PR simplifies the initialization by delegating the HW device context management to FFmpeg's native code.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2534
      
      Reviewed By: hwangjeff
      
      Differential Revision: D37734573
      
      Pulled By: mthrok
      
      fbshipit-source-id: e61736b4d4d2ca6e94d8965abd93b4e9a68e7351
      4ba56323
    • Sean Kim's avatar
      Hybrid Demucs model implementation (#2506) · 608b8ea6
      Sean Kim authored
      Summary:
      Draft PR with initial model implementation with minor changes from previous implementation
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2506
      
      Reviewed By: nateanl
      
      Differential Revision: D37762671
      
      Pulled By: skim0514
      
      fbshipit-source-id: b7dc0a6ef725d6ae6d76c23c882623f7d339977c
      608b8ea6
    • moto's avatar
      Clean up the interface around dictionary (#2533) · e2641452
      moto authored
      Summary:
      Python dictionary is bound to different types in TorchBind and PyBind.
      StreamReader has methods that receive and return dictionary.
      
      This commit cleans up the treatment of dictionary and consolidate
      helper functions.
      
      * The core implementation and TorchBind all uses `c10::Dict`.
      * PyBind version uses `std::map` and converts it to `c10::Dict`.
      * The helper functions to convert `std::map` <-> `c10::Dict` are consolidated in pybind directory.
      * The wrapper methods are implemented in `pybind` dir.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2533
      
      Reviewed By: hwangjeff
      
      Differential Revision: D37731866
      
      Pulled By: mthrok
      
      fbshipit-source-id: 5a5cf1372668f7d3aacc0bb461bc69fa07212f3f
      e2641452
    • Zhaoheng Ni's avatar
      Fix docstring (#2540) · 05d2580a
      Zhaoheng Ni authored
      Summary:
      The docstring of `apply_beamforming` has warning when building the documentation page. Fix it in this PR.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2540
      
      Reviewed By: mthrok
      
      Differential Revision: D37763745
      
      Pulled By: nateanl
      
      fbshipit-source-id: 0e9f1e098865af032b00ac56d918cb9d2ffc5024
      05d2580a
  4. 11 Jul, 2022 1 commit
  5. 08 Jul, 2022 1 commit
  6. 07 Jul, 2022 5 commits
  7. 06 Jul, 2022 1 commit
    • Caroline Chen's avatar
      Fix fluent test for windows (#2510) · 09daa438
      Caroline Chen authored
      Summary:
      fluent dataset test currently fails on windows, due to new line generation in csv writer in testing and incorrect path parsing in dataset impl.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2510
      
      Reviewed By: carolineechen
      
      Differential Revision: D37573203
      
      Pulled By: mthrok
      
      fbshipit-source-id: 4868bc649690c7e596b002686c6128ce735d3564
      09daa438
  8. 29 Jun, 2022 1 commit
    • moto's avatar
      Fix build doc job (#2520) · ef8bd7b6
      moto authored
      Summary:
      The build doc job is failing these days due to the fact that CUDA 11.6 requires different handling.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2520
      
      Reviewed By: xiaohui-zhang
      
      Differential Revision: D37527088
      
      Pulled By: mthrok
      
      fbshipit-source-id: 34c23bdbf70ba9fb8e315c7036cff01b3ddf4c91
      ef8bd7b6
  9. 28 Jun, 2022 3 commits
    • hwangjeff's avatar
      Add 0.12.0 to version compatibility matrix (#2513) · d3b4ce68
      hwangjeff authored
      Summary: Pull Request resolved: https://github.com/pytorch/audio/pull/2513
      
      Reviewed By: mthrok
      
      Differential Revision: D37491994
      
      Pulled By: hwangjeff
      
      fbshipit-source-id: 2c164bcec39342fd94abf4cc148d96dc9844699e
      d3b4ce68
    • moto's avatar
      Refactor FilterGraph interface (#2508) · 0dd57236
      moto authored
      Summary:
      FilterGraph is necessary for StreamWriter when saving video as
      Tensor array format cannot express commonot video formats like yub420.
      
      The current implementation of FilterGraph is specific to StreamReader,
      as it takes AVCodecParameters object. Not individual parameters.
      
      This PR refactor FilterGraph interface so that it can be constructed
      from more primitive information.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2508
      
      Reviewed By: hwangjeff
      
      Differential Revision: D37466033
      
      Pulled By: mthrok
      
      fbshipit-source-id: 8414e985da7579c2dfe260b4dccd2afe113bb573
      0dd57236
    • moto's avatar
      Refactor AVDictionary clean up (#2507) · 0ad03adf
      moto authored
      Summary:
      Small clean up in ffmpeg binding code.
      
      1. Make `get_option_dict` and `clean_up_dict` public utility
      2. Merge the exception into `clean_up_dict`
      3. Get rid of custom string join function and use `c10::Join`.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2507
      
      Reviewed By: hwangjeff
      
      Differential Revision: D37466022
      
      Pulled By: mthrok
      
      fbshipit-source-id: 44b769ac6ff1ab20e6d6ae086cd1447deacb5969
      0ad03adf
  10. 27 Jun, 2022 5 commits
  11. 24 Jun, 2022 1 commit
  12. 23 Jun, 2022 1 commit
  13. 21 Jun, 2022 1 commit
    • Sean Kim's avatar
      Create musdb handler and tests (#2484) · b92a8a09
      Sean Kim authored
      Summary:
      Create dataset handler and tests for new dataset. Manually tested and unit tested to test validity. Pre-commit ran for style checks.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2484
      
      Reviewed By: carolineechen, nateanl
      
      Differential Revision: D37250556
      
      Pulled By: skim0514
      
      fbshipit-source-id: d2c8d73d22fd9d7282026265676f3eab1e178d51
      b92a8a09
  14. 20 Jun, 2022 1 commit
  15. 17 Jun, 2022 1 commit
  16. 16 Jun, 2022 1 commit
  17. 15 Jun, 2022 7 commits
  18. 14 Jun, 2022 2 commits