ace-step-v1.5-1d-vae-stable-audio-format
1
license:mit
by
ACE-Step
Audio Model
OTHER
New
0 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
Quick Startbash
pip install stable-audio-tools torchaudioQuick Startpython
from stable_audio_vae import StableAudioVAE
# Load model
vae = StableAudioVAE(
config_path="config.json",
checkpoint_path="checkpoint.ckpt",
)
vae = vae.cuda().eval()
# Encode audio
wav = vae.load_wav("input.wav")
wav = wav.cuda()
latent = vae.encode(wav)
print(f"Latent shape: {latent.shape}") # [batch, 64, time/1920]
# Decode back to audio
output = vae.decode(latent)Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.