Views
No views yet
This is an ungated mirror of the Stable Audio Open 1.0 model weights for use with Mæstræa AI Workstation. Only safetensors-format weights are included (legacy.ckptfiles stripped). All credits go to the original authors.
| Path | Description | Size |
|---|---|---|
model.safetensors | Main model checkpoint | ~3 GB |
transformer/diffusion_pytorch_model.safetensors | DiT transformer | ~1.5 GB |
text_encoder/model.safetensors | T5 text encoder | ~1.2 GB |
vae/diffusion_pytorch_model.safetensors | VAE decoder | ~150 MB |
projection_model/diffusion_pytorch_model.safetensors | Projection model | ~50 MB |
tokenizer/ | T5 tokenizer files | < 10 MB |
model_config.json | Model architecture config | < 1 KB |
model_index.json | Diffusers pipeline index | < 1 KB |
scheduler/ | Scheduler config | < 1 KB |
1from diffusers import StableAudioPipeline
2import torch
3
4pipe = StableAudioPipeline.from_pretrained(
5 "AEmotionStudio/stable-audio-open-models",
6 torch_dtype=torch.float16,
7).to("cuda")
8
9audio = pipe(
10 prompt="Thunderstorm with heavy rain and distant rolling thunder",
11 negative_prompt="low quality, distorted",
12 audio_end_in_s=10.0,
13 num_inference_steps=100,
14).audios[0]1from stable_audio_tools import get_pretrained_model
2model, model_config = get_pretrained_model("AEmotionStudio/stable-audio-open-models")