-
Notifications
You must be signed in to change notification settings - Fork 672
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce chroma spectrogram transform #3427
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/audio/3427
Note: Links to docs will display an error until the docs builds have been completed. ❌ 4 New FailuresAs of commit fcacb1b: NEW FAILURES - The following jobs have failed:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
This pull request was exported from Phabricator. Differential Revision: D46547418 |
Summary: Pull Request resolved: pytorch#3427 Adds transform `ChromaSpectrogram` for generating chromagrams from waveforms as well as transform `ChromaScale` for generating chromagrams from linear-frequency spectrograms. Differential Revision: D46547418 fbshipit-source-id: 2c0cf267c1864feaef6ea6263e1eeb7cfb686ea7
654f5a4
to
c3d4c62
Compare
This pull request was exported from Phabricator. Differential Revision: D46547418 |
Summary: Pull Request resolved: pytorch#3427 Adds transform `ChromaSpectrogram` for generating chromagrams from waveforms as well as transform `ChromaScale` for generating chromagrams from linear-frequency spectrograms. Differential Revision: D46547418 fbshipit-source-id: 9ba60dad216c2d8b88581e27e9f50c0e5a917ae7
c3d4c62
to
cb725f0
Compare
This pull request was exported from Phabricator. Differential Revision: D46547418 |
Summary: Pull Request resolved: pytorch#3427 Adds transform `ChromaSpectrogram` for generating chromagrams from waveforms as well as transform `ChromaScale` for generating chromagrams from linear-frequency spectrograms. Differential Revision: D46547418 fbshipit-source-id: 4fd3f2b494f3dc79fc6c60e49ff32d12ce22ed2f
cb725f0
to
18a857a
Compare
This pull request was exported from Phabricator. Differential Revision: D46547418 |
Summary: Pull Request resolved: pytorch#3427 Adds transform `ChromaSpectrogram` for generating chromagrams from waveforms as well as transform `ChromaScale` for generating chromagrams from linear-frequency spectrograms. Differential Revision: D46547418 fbshipit-source-id: bc69fc1d9b705a427b09477ff66bd5f3a66afc4b
18a857a
to
fcacb1b
Compare
This pull request was exported from Phabricator. Differential Revision: D46547418 |
This pull request has been merged in 7096829. |
Hey @None. Some guidance:Use 'module: ops' for operations under 'torchaudio/{transforms, functional}', and ML-related components under 'torchaudio/csrc' (e.g. RNN-T loss). Things in "examples" directory:
Regarding examples in code documentations, please also use 'module: docs'. Please use 'other' tag only when you’re sure the changes are not much relevant to users, or when all other tags are not applicable. Try not to use it often, in order to minimize efforts required when we prepare release notes. When preparing release notes, please make sure 'documentation' and 'tutorials' occur as the last sub-categories under each primary category like 'new feature', 'improvements' or 'prototype'. Things related to build are by default excluded from the release note, except when it impacts users. For example: |
Summary: Adds transform
ChromaSpectrogram
for generating chromagrams from waveforms as well as transformChromaScale
for generating chromagrams from linear-frequency spectrograms.Differential Revision: D46547418