audio-diffusion-pytorch
SkillMedia"Use audio-diffusion-pytorch for PyTorch waveform diffusion
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the audio-diffusion-pytorch skill
What this skill tells your AI
The instructions your AI receives, as published by vectorspacelab/arex-skill in skills/repositories/repo-skills/audio-diffusion-pytorch/SKILL.md and read by ahel’s review.
Use this repo skill when a task involves the audio-diffusion-pytorch package or asks for PyTorch audio diffusion model setup, waveform generation, diffusion upsampling, mel vocoding, inpainting, or audio autoencoding.
This package provides building blocks and wrappers; it does not ship pretrained weights, ready-to-run checkpoints, or guaranteed Moûsai paper configs. Treat examples as model-construction and shape recipes unless the user supplies weights, data, or a training plan.
Install and quick checks
Install the public package:
pip install audio-diffusion-pytorch
Minimal import check:
python - <<'PY'
from importlib.metadata import version
import audio_diffusion_pytorch
print(version("audio-diffusion-pytorch"))
print("import ok")
PY
Optional dependencies:
- Text conditioning uses the default
a-unetT5 embedder and requirestransformers. First use may consult Hugging Face cache or network. - README-style autoencoder examples may use
audio_encoders_pytorchandauraloss, but the coreDiffusionAEwrapper can also work with a local encoder object. - CUDA is optional for this package. CPU is enough for tiny smoke checks; use a CUDA-capable PyTorch install only when the user wants GPU execution.
Run scripts/check_install.py to report installed versions, optional modules, and public signatures. Use --check-cuda only when you want a tiny CUDA allocation.
Route map
- Use
sub-skills/generation/SKILL.mdforDiffusionModel,UNetV0,VDiffusion,VSampler, text-conditioned generation,VInpainter, schedules, distributions, and expertDiffusionARnotes. - Use
sub-skills/conditioning/SKILL.mdforDiffusionUpsampler,DiffusionVocoder,DiffusionAE,EncoderBase,AdapterBase, mel spectrogram conditioning, and transform plugins. - Use
references/troubleshooting.mdfor install/import issues, optional dependencies, backend questions, no-pretrained-weights expectations, and cross-cutting shape gotchas. - Use
references/repo-provenance.mdbefore deciding whether this skill is current for a checkout or should be refreshed.
Common decisions
- Identify the workflow family first:
- new waveform generation, text prompts, sampler errors, or masks →
generation; - lower-rate waveform conditioning, mel spectrograms, latents, encoders, adapters, or custom losses →
conditioning.
- new waveform generation, text prompts, sampler errors, or masks →
- Keep smoke tests tiny: use channel counts and lengths from the bundled scripts before scaling to README-sized tensors.
- Set
resnet_groups=1for tiny channels, or use channel widths divisible by the defaultresnet_groups=8. - Keep tensors on one device. Move the model and all inputs to CUDA only after CPU shape checks pass.
- Do not promise audio quality from random weights. Sampling APIs validate shape and execution, not trained generation quality.
Avoid this skill when
- The user wants a pretrained audio diffusion checkpoint, dataset download, or benchmark reproduction and has not supplied the missing assets.
- The task is about non-PyTorch audio libraries, ASR/TTS pipelines unrelated to diffusion/vocoding, or image diffusion.
- The user is editing this repository's release workflow rather than using the package APIs.
Maintenance note
This skill is self-contained for operating use. If a future checkout changes package metadata, public constructors, README workflows, or source roots, run refresh-repo-skill instead of patching this skill ad hoc.
Signals
- GitHub stars
- 266
- Forks
- 21
- Last commit
- Sep 2026
ahel review
K1binfo
installs-packagesK6low
bundled executables the agent is told to runK1binfo
installs-packages (in scripts/check_install.py)K1binfo
installs-packages (in references/troubleshooting.md)
Automated review, not a security audit. Ruleset v1+k2.
Advanced
- Catalog kind
- skill
- Gateway key
audio-diffusion-pytorch- Source
- github.com/vectorspacelab/arex-skill