Stable Audio Open Small is an open-source model optimized for generating short audio samples, sound effects, and production elements using text prompts. The model consists of three main submodules:
You can learn more about stable-audio-open-small on Hugging Face .
Log in to Hugging Face and navigate to the model landing page:
https://huggingface.co/stabilityai/stable-audio-open-small/tree/main
You will need to fill out a form with your contact information to access the model.
Download the following files:
model_config.json (configuration file)model.ckpt (model checkpoint)Copy both files to your workspace directory.
Verify the files exist:
ls $WORKSPACE/model_config.json
ls $WORKSPACE/model.ckpt
A good prompt for Stable Audio Open Small includes:
The order of prompt parameters matters. For example:
warm arpeggios on house beats 120BPM with drums effect
For more information, see the Prompt structure user guide .
You can explore additional training and inference code in the Stable Audio Tools repository .
You’ve downloaded the Stable Audio Open Small model files and learned how to structure effective prompts. In the next section, you’ll convert these model files to ExecuTorch format for on-device deployment.