stability-ai/stable-audio-tools — explained in plain English
Analysis updated 2026-07-03
Run the Gradio web interface to generate audio from text prompts using the stable-audio-open-1.0 pre-trained model locally.
Fine-tune an existing Stability AI audio model on your own audio dataset using multi-GPU training with PyTorch Lightning.
Train a new audio generation model from scratch by writing a JSON config file that defines the model architecture and dataset.
Strip training-only data from a saved model checkpoint to create a smaller file ready for deployment or sharing.
| stability-ai/stable-audio-tools | facebookresearch/reagent | opengeos/leafmap | |
|---|---|---|---|
| Stars | 3,699 | 3,699 | 3,699 |
| Language | Python | Python | Python |
| Setup difficulty | hard | moderate | easy |
| Complexity | 4/5 | 4/5 | 2/5 |
| Audience | researcher | researcher | data |
Figures from each repo's GitHub metadata at analysis time.
Requires Python 3.10, PyTorch 2.5+, a Hugging Face account with license acceptance, and a Weights and Biases account for training runs.
Stable Audio Tools is a Python library from Stability AI that contains the training and inference code for their audio generation models. These are AI models that take a text description or other input and produce audio output. The repository is the technical foundation behind Stable Audio, their publicly released audio generation product. For someone who just wants to try out a pre-trained model without training anything themselves, the README describes a web-based interface built with a tool called Gradio. You run a single command pointing it at a model hosted on Hugging Face and get a local interface in your browser where you can type prompts and hear the generated audio. The pre-trained model it uses as an example is called stable-audio-open-1.0, which requires accepting a license agreement on Hugging Face before downloading. For people who want to train their own models or fine-tune an existing one, the library uses a framework called PyTorch Lightning to handle multi-GPU and multi-node training. Training is configured through JSON files that define the model architecture, the audio format (sample rate, mono vs stereo, clip length), and the training dataset. Datasets can come from a local folder of audio files or from cloud storage on Amazon S3. Training progress is logged to Weights and Biases, a service for tracking machine learning experiments, so an account there is required. One practical detail the README explains is the difference between "wrapped" and "unwrapped" model checkpoints. During training, the saved files include optimizer state and other training-only data that bloat the file size. The repository includes a script to strip all of that out and save a smaller file suitable for inference or fine-tuning. The library requires Python 3.10 and PyTorch 2.5 or later.
Stability AI's Python library for training and running AI audio generation models, includes a browser interface to generate audio from text prompts using pre-trained models from Hugging Face.
Mainly Python. The stack also includes Python, PyTorch, PyTorch Lightning.
Pre-trained models require accepting a separate license on Hugging Face before downloading, code license terms are in the repository.
Setup difficulty is rated hard, with roughly 1h+ to a first successful run.
Mainly researcher.
This repo across BitVibe Labs
Verify against the repo before relying on details.